Skip to content

Commit

Permalink
refactor(service-registry): remove unused config from state file (#569)
Browse files Browse the repository at this point in the history
  • Loading branch information
maancham authored Aug 2, 2024
1 parent bf11cc6 commit a0ee664
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions contracts/service-registry/src/state.rs
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
use axelar_wasm_std::nonempty;
use axelar_wasm_std::snapshot::Participant;
use cosmwasm_schema::cw_serde;
use cosmwasm_std::{Addr, Storage, Timestamp, Uint128};
use cw_storage_plus::{Item, Map};
use cw_storage_plus::Map;
use router_api::ChainName;
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

#[cw_serde]
pub struct Config {
pub governance: Addr,
}

pub const CONFIG: Item<Config> = Item::new("config");

use axelar_wasm_std::nonempty;
use axelar_wasm_std::snapshot::Participant;

use crate::ContractError;

#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)]
Expand Down

0 comments on commit a0ee664

Please sign in to comment.