Skip to content

Commit

Permalink
pass intrinsic gas check
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Nov 16, 2023
1 parent 8b26a97 commit 1ba3376
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/rpc/rpc_pending_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,8 @@ func makePendingTxParams(t *testing.T) []map[string]string {
param[0]["from"] = "0x" + fmt.Sprintf("%x", from)
param[0]["to"] = addrA
param[0]["value"] = "0xA"
param[0]["gasLimit"] = "0x5208"
param[0]["gasLimit"] = "0x9EC0"
param[0]["gas"] = param[0]["gasLimit"]
param[0]["gasPrice"] = gasPrice
return param
}

0 comments on commit 1ba3376

Please sign in to comment.