File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
contracts/swap/src/testing Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 65
65
toolchain : 1.74.0
66
66
args : --locked --tests
67
67
env :
68
- LLVM_PROFILE_FILE : " swap-converter -%p-%m.profraw"
68
+ LLVM_PROFILE_FILE : " swap-contract -%p-%m.profraw"
69
69
RUSTFLAGS : " -Cinstrument-coverage"
70
70
RUST_BACKTRACE : 1
71
71
Original file line number Diff line number Diff line change @@ -817,7 +817,7 @@ pub fn init_self_relaying_contract_and_get_address(
817
817
owner : & SigningAccount ,
818
818
initial_balance : & [ Coin ] ,
819
819
) -> String {
820
- let code_id = store_code ( wasm, owner, "injective_converter " . to_string ( ) ) ;
820
+ let code_id = store_code ( wasm, owner, "swap_contract " . to_string ( ) ) ;
821
821
wasm. instantiate (
822
822
code_id,
823
823
& InstantiateMsg {
@@ -840,7 +840,7 @@ pub fn init_contract_with_fee_recipient_and_get_address(
840
840
initial_balance : & [ Coin ] ,
841
841
fee_recipient : & SigningAccount ,
842
842
) -> String {
843
- let code_id = store_code ( wasm, owner, "injective_converter " . to_string ( ) ) ;
843
+ let code_id = store_code ( wasm, owner, "swap_contract " . to_string ( ) ) ;
844
844
wasm. instantiate (
845
845
code_id,
846
846
& InstantiateMsg {
Original file line number Diff line number Diff line change 7
7
8
8
COMMIT_HASH=$( git rev-parse --short HEAD)
9
9
10
- rm -f ../devnet-setup/wasm-contracts/swap_converter *
11
- cp artifacts/injective_converter $ARCH .wasm ../devnet-setup/wasm-contracts/swap_converter_ ${COMMIT_HASH} .wasm
10
+ rm -f ../devnet-setup/wasm-contracts/swap_contract *
11
+ cp artifacts/swap_contract $ARCH .wasm ../devnet-setup/wasm-contracts/swap_contract_ ${COMMIT_HASH} .wasm
12
12
13
- echo " SWAP_CONVERTER_COMMIT_HASH=$COMMIT_HASH " > " ../devnet-setup/wasm-contracts/swap_converter .version"
13
+ echo " SWAP_CONVERTER_COMMIT_HASH=$COMMIT_HASH " > " ../devnet-setup/wasm-contracts/swap_contract .version"
You can’t perform that action at this time.
0 commit comments