You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue arises out of a change made for hive test compatibility due to off-spec behavior in geth. Please see more detailed write-up of geth's behavior here
Acceptance Criteria
eth_getProof should return storage keys as Quantity according to 1186 spec, with Quantity as defined in 1474. It should never have a leading zero in a returned storage proof key
Expected behavior:
According to 1186 storage keys in eth_getProof responses should be Quantity encoded (0x prefixed no-leading-zeroes hex strings) as defined in 1474. These should never have leading 0 nibbles
Actual behavior:
Nethermind returns a leading 0 e.g. 0x05 due to changes made in #4564 as a result of #4504.
Frequency:
roughly 1 in 16 (whenever a leading nibble is 0)
The text was updated successfully, but these errors were encountered:
This issue arises out of a change made for hive test compatibility due to off-spec behavior in geth. Please see more detailed write-up of geth's behavior here
Acceptance Criteria
eth_getProof
should return storage keys asQuantity
according to 1186 spec, with Quantity as defined in 1474. It should never have a leading zero in a returned storage proof keySteps to Reproduce (Bug)
Expected behavior:
According to 1186 storage keys in
eth_getProof
responses should beQuantity
encoded (0x
prefixed no-leading-zeroes hex strings) as defined in 1474. These should never have leading 0 nibblesActual behavior:
Nethermind returns a leading 0 e.g.
0x05
due to changes made in #4564 as a result of #4504.Frequency:
roughly 1 in 16 (whenever a leading nibble is 0)
The text was updated successfully, but these errors were encountered: