Skip to content

Commit f84366d

Browse files
authored
verkle: fix balance bigger than 128 bits (#761)
Signed-off-by: Ignacio Hagopian <[email protected]>
1 parent 5a28805 commit f84366d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/verkle/eip6800_verkle_tree/test_verkle_from_mpt_conversion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
@pytest.fixture
2525
def pre() -> Mapping: # noqa: D103
2626
return {
27-
TestAddress: Account(balance=10**40),
27+
TestAddress: Account(balance=2**127),
2828
code_address: Account(
2929
nonce=1,
3030
balance=1,

0 commit comments

Comments
 (0)