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:
Noel Maersk 2018-09-04 13:07:17 +03:00
parent 5ee7a65fd2
commit 36af8e526b
1 changed files with 1 additions and 1 deletions

View File

@ -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