Skip to content

Commit

Permalink
fix: erc20 contract artifact path
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan-Ethernal committed Feb 18, 2025
1 parent 25237b8 commit 9d74f79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/bats/helpers/common.bash
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ function verify_balance() {
else
final_balance_wei=$(cast call --rpc-url "$rpc_url" "$token_addr" "$balance_of_fn_sig" "$destination_addr" | awk '{print $1}')
fi
echo "Final balance of $account in $rpc_url: $final_balance_wei wei" >&3
echo "Final balance of $account (token=$token_addr) in $rpc_url network: $final_balance_wei wei" >&3

# Calculate expected final balance (initial_balance + amount)
local expected_final_balance_wei=$(echo "$initial_balance_wei + $amount_wei" | bc)
Expand Down
2 changes: 1 addition & 1 deletion test/bats/pp/bridge-e2e.bats
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ setup() {
readonly l2_rpc_network_id=$(cast call --rpc-url $l2_rpc_url $bridge_addr 'networkID() (uint32)')
gas_price=$(cast gas-price --rpc-url "$l2_rpc_url")

readonly erc20_artifact_path=${ERC20_ARTIFACT_PATH:-"./test/contracts/erc20mock/ERC20Mock.json"}
readonly erc20_artifact_path=${ERC20_ARTIFACT_PATH:-"./contracts/erc20mock/ERC20Mock.json"}
}

@test "Native gas token deposit to WETH" {
Expand Down

0 comments on commit 9d74f79

Please sign in to comment.