We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fe7e68f + dff46d9 commit bf6b494Copy full SHA for bf6b494
1 file changed
src/ethereum/forks/amsterdam/stateless_ssz.py
@@ -65,7 +65,7 @@ class SszWithdrawal(Container):
65
index: uint64
66
validator_index: uint64
67
address: ByteVector[20]
68
- amount: uint256
+ amount: uint64
69
70
71
class SszExecutionPayload(Container):
@@ -180,7 +180,7 @@ def _withdrawal_to_ssz(w: Withdrawal) -> SszWithdrawal:
180
index=uint64(int(w.index)),
181
validator_index=uint64(int(w.validator_index)),
182
address=ByteVector[20](bytes(w.address)),
183
- amount=uint256(int(w.amount)),
+ amount=uint64(int(w.amount)),
184
)
185
186
0 commit comments