Skip to content

Commit

Permalink
chore(py): change the test fee constants again
Browse files Browse the repository at this point in the history
changed from prerelease version seen earlier.
  • Loading branch information
Joonas Koivunen committed Jul 20, 2022
1 parent 9bc998b commit 07f3b6f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions py/src/test_call.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ def test_fee_estimate_on_positive_directly():
(verb, output, _timings) = loop_inner(con, command)

assert output == {
"gas_consumed": 0x0A07,
"gas_consumed": 1343,
"gas_price": 0,
"overall_fee": 0,
}
Expand All @@ -447,7 +447,7 @@ def test_fee_estimate_on_positive():
assert first == {
"status": "ok",
"output": {
"gas_consumed": "0x" + (0x0A07).to_bytes(32, "big").hex(),
"gas_consumed": "0x" + (0x053F).to_bytes(32, "big").hex(),
"gas_price": "0x" + (0).to_bytes(32, "big").hex(),
"overall_fee": "0x" + (0).to_bytes(32, "big").hex(),
},
Expand All @@ -456,9 +456,9 @@ def test_fee_estimate_on_positive():
assert second == {
"status": "ok",
"output": {
"gas_consumed": "0x" + (0x0A07).to_bytes(32, "big").hex(),
"gas_consumed": "0x" + (0x053F).to_bytes(32, "big").hex(),
"gas_price": "0x" + (10).to_bytes(32, "big").hex(),
"overall_fee": "0x" + (0x644A).to_bytes(32, "big").hex(),
"overall_fee": "0x" + (0x3478).to_bytes(32, "big").hex(),
},
}

Expand Down

0 comments on commit 07f3b6f

Please sign in to comment.