mirror of https://github.com/status-im/EIPs.git
eip-198: replace "zeroes" with "zero bytes".
Asked to write "31 zeroes", many would press `0` 31 times, even if they know from context that \x00 was meant. Remove this possible confusion source.
This commit is contained in:
parent
5ee7a65fd2
commit
36af8e526b
|
@ -91,7 +91,7 @@ This input data:
|
||||||
ffff
|
ffff
|
||||||
80
|
80
|
||||||
|
|
||||||
Would also parse as a base of 3, an exponent of 65535 and a modulus of `2**255`, as it attempts to grab 32 bytes for the modulus starting from 0x80, but then there is no further data so it right pads it with 31 zeroes.
|
Would also parse as a base of 3, an exponent of 65535 and a modulus of `2**255`, as it attempts to grab 32 bytes for the modulus starting from 0x80 - but there is no further data, so it right-pads it with 31 zero bytes.
|
||||||
|
|
||||||
# Rationale
|
# Rationale
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue