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
pushN currently, when overflowing, prepends bytes rather than appending them. While this can't cause any consensus failure it should append the bytes for consistency.
For example
0x80 // PUSH32
0x01
should push 0x0100000000000000000000000000000000000000000000000000000000 next this program will run in to 0x00 (STOP).
The text was updated successfully, but these errors were encountered:
…ethereum#446)
* core: Move blockchain head verification after possible rewind
If the blockchain needs a rewind due to a config change, it makes more
sense to first perform that rewind and only then check the chain head's
validity. The change in config might cause the loaded chain's head to be
invalid before the rewind.
* log configs at startup
* fix logging
pushN
currently, when overflowing, prepends bytes rather than appending them. While this can't cause any consensus failure it should append the bytes for consistency.For example
should push
0x0100000000000000000000000000000000000000000000000000000000
next this program will run in to0x00
(STOP
).The text was updated successfully, but these errors were encountered: