diff --git a/tests/test_connector.rs b/tests/test_connector.rs index c04f4d4d4..b28d12a40 100644 --- a/tests/test_connector.rs +++ b/tests/test_connector.rs @@ -26,6 +26,7 @@ const RECIPIENT_ETH_ADDRESS: &'static str = "891b2749238b27ff58e951088e55b04de71 const EVM_CUSTODIAN_ADDRESS: &'static str = "096DE9C2B8A5B8c22cEe3289B101f6960d68E51E"; const DEPOSITED_EVM_AMOUNT: u128 = 10200; const DEPOSITED_EVM_FEE: u128 = 200; +const ERR_NOT_ENOUGH_BALANCE_FOR_FEE: &'static str = "ERR_NOT_ENOUGH_BALANCE_FOR_FEE"; near_sdk_sim::lazy_static_include::lazy_static_include_bytes! { EVM_WASM_BYTES => "release.wasm" @@ -74,8 +75,8 @@ fn init_contract( bridge_prover_id: accounts(0).to_string(), upgrade_delay_blocks: 1, } - .try_to_vec() - .unwrap(), + .try_to_vec() + .unwrap(), DEFAULT_GAS, STORAGE_AMOUNT, ) @@ -88,8 +89,8 @@ fn init_contract( prover_account: PROVER_ACCOUNT.into(), eth_custodian_address: custodian_address.into(), } - .try_to_vec() - .unwrap(), + .try_to_vec() + .unwrap(), DEFAULT_GAS, 0, ) @@ -114,8 +115,8 @@ fn call_deposit_near(master_account: &UserAccount, contract: &str) -> Vec