Skip to content

Commit

Permalink
happy
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmitry-lahoda committed Dec 8, 2023
1 parent 2a2d6e6 commit cbd4e76
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/cosmwasm/executor/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use cw2::{ensure_from_older_version, set_contract_version};
use cw20::{BalanceResponse, Cw20Contract, Cw20ExecuteMsg, Cw20QueryMsg};
use num::Zero;

const CONTRACT_NAME: &str = "cvm-executor";
const CONTRACT_NAME: &str = include_str!("contract_name.txt");
const CONTRACT_VERSION: &str = env!("CARGO_PKG_VERSION");

const CALL_ID: u64 = 1;
Expand Down
1 change: 1 addition & 0 deletions contracts/cosmwasm/executor/src/contract_name.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cw-cvm-executor
1 change: 1 addition & 0 deletions contracts/cosmwasm/gateway/src/contract/contract_name.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cw-cvm-executor
2 changes: 1 addition & 1 deletion contracts/cosmwasm/gateway/src/contract/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use ibc_app_transfer_types::proto::transfer::v1::MsgTransferResponse;

use self::ibc::make_ibc_failure_event;

const CONTRACT_NAME: &str = "composable:xcvm-gateway";
const CONTRACT_NAME: &str = include_str!("contract_name.txt");
const CONTRACT_VERSION: &str = env!("CARGO_PKG_VERSION");

#[derive(PartialEq, Debug, Clone, Copy, enumn::N)]
Expand Down

0 comments on commit cbd4e76

Please sign in to comment.