Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(service-registry): remove unused config from state file #569

Merged
merged 2 commits into from
Aug 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading