Skip to content

Commit

Permalink
avoid cannot unmarshal non-string err by pass hex
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Mar 27, 2024
1 parent fbad19b commit 3a625d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration_tests/test_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ def test_incomplete_send_transaction(ethermint_rpc_ws, geth):
eth_rpc = w3.provider
geth_rpc = geth.w3.provider
gas_price = w3.eth.gas_price
tx = {"from": "", "to": ADDRS["community"], "value": 0, "gasPrice": gas_price}
tx = {"from": "", "to": ADDRS["community"], "gasPrice": hex(gas_price)}
make_same_rpc_calls(eth_rpc, geth_rpc, "eth_sendTransaction", [tx])


Expand Down

0 comments on commit 3a625d7

Please sign in to comment.