Skip to content

Commit

Permalink
resolve
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Sep 24, 2024
1 parent 45dbcde commit 14733dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/evm/keeper/grpc_query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -905,7 +905,7 @@ func (suite *GRPCServerTestSuiteSuite) TestTraceTx() {
{
msg: "default trace with enableFeemarket and sufficient balance",
malleate: func() {
suite.App.EvmKeeper.SetBalance(suite.Ctx, suite.Address, big.NewInt(1000000000000000000))
suite.App.EvmKeeper.SetBalance(suite.Ctx, suite.Address, big.NewInt(1000000000000000000), types.DefaultEVMDenom)
traceConfig = &types.TraceConfig{
DisableStack: true,
DisableStorage: true,
Expand All @@ -931,7 +931,7 @@ func (suite *GRPCServerTestSuiteSuite) TestTraceTx() {
{
msg: "javascript tracer with enableFeemarket and sufficient balance",
malleate: func() {
suite.App.EvmKeeper.SetBalance(suite.Ctx, suite.Address, big.NewInt(1000000000000000000))
suite.App.EvmKeeper.SetBalance(suite.Ctx, suite.Address, big.NewInt(1000000000000000000), types.DefaultEVMDenom)
traceConfig = &types.TraceConfig{
Tracer: "{data: [], fault: function(log) {}, step: function(log) { if(log.op.toString() == \"CALL\") this.data.push(log.stack.peek(0)); }, result: function() { return this.data; }}",
}
Expand Down

0 comments on commit 14733dd

Please sign in to comment.