diff --git a/app/receipt_test.go b/app/receipt_test.go index 80e95ecea6..935031cef3 100644 --- a/app/receipt_test.go +++ b/app/receipt_test.go @@ -202,7 +202,7 @@ func TestEvmEventsForCw721(t *testing.T) { wasmAddr := common.HexToAddress(wasmd.WasmdAddress) txData := ethtypes.LegacyTx{ Nonce: 0, - GasPrice: big.NewInt(1000000000), + GasPrice: big.NewInt(333000000000), Gas: 1000000, To: &wasmAddr, Data: data, diff --git a/precompiles/distribution/distribution_test.go b/precompiles/distribution/distribution_test.go index 81dc427469..1a7e071d3c 100644 --- a/precompiles/distribution/distribution_test.go +++ b/precompiles/distribution/distribution_test.go @@ -1051,7 +1051,7 @@ func TestPrecompile_RunAndCalculateGas_Rewards(t *testing.T) { suppliedGas: uint64(1000000), }, wantRet: emptyCasePackedOutput, - wantRemainingGas: 994319, + wantRemainingGas: 994313, wantErr: false, }, { @@ -1067,7 +1067,7 @@ func TestPrecompile_RunAndCalculateGas_Rewards(t *testing.T) { suppliedGas: uint64(1000000), }, wantRet: happyPathPackedOutput, - wantRemainingGas: 994319, + wantRemainingGas: 994313, wantErr: false, }, } diff --git a/precompiles/ibc/ibc_test.go b/precompiles/ibc/ibc_test.go index da56d0f937..feccfb150e 100644 --- a/precompiles/ibc/ibc_test.go +++ b/precompiles/ibc/ibc_test.go @@ -106,7 +106,7 @@ func TestPrecompile_Run(t *testing.T) { fields: fields{transferKeeper: &MockTransferKeeper{}}, args: commonArgs, wantBz: packedTrue, - wantRemainingGas: 994319, + wantRemainingGas: 994313, wantErr: false, }, { @@ -235,7 +235,7 @@ func TestPrecompile_Run(t *testing.T) { value: nil, }, wantBz: packedTrue, - wantRemainingGas: 994319, + wantRemainingGas: 994313, wantErr: false, }, { @@ -255,7 +255,7 @@ func TestPrecompile_Run(t *testing.T) { value: nil, }, wantBz: packedTrue, - wantRemainingGas: 994319, + wantRemainingGas: 994313, wantErr: false, }, } diff --git a/x/evm/integration_test.go b/x/evm/integration_test.go index c390eb297b..bb03ee0ae0 100644 --- a/x/evm/integration_test.go +++ b/x/evm/integration_test.go @@ -75,7 +75,7 @@ func TestERC2981PointerToCW2981(t *testing.T) { require.Nil(t, err) txData := ethtypes.LegacyTx{ Nonce: 0, - GasPrice: big.NewInt(1000000000), + GasPrice: big.NewInt(333000000000), Gas: 5000000, To: &to, Data: data, @@ -108,7 +108,7 @@ func TestERC2981PointerToCW2981(t *testing.T) { require.Nil(t, err) txData = ethtypes.LegacyTx{ Nonce: 1, - GasPrice: big.NewInt(1000000000), + GasPrice: big.NewInt(333000000000), Gas: 1000000, To: &pointerAddr, Data: data,