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
{{ message }}
This repository has been archived by the owner on Nov 6, 2022. It is now read-only.
Currently ArbOS (and some aspects of its input protocol) treats a null address as the same as address zero. This is probably harmless, but it's better and safer to handle this according to spec. This would involve using option<address> in some places where the current code just uses an address.
(Null address is used in submitting txs to deploy contracts. Deploy txs use null as their destination address.)
The text was updated successfully, but these errors were encountered:
Currently ArbOS (and some aspects of its input protocol) treats a null address as the same as address zero. This is probably harmless, but it's better and safer to handle this according to spec. This would involve using
option<address>
in some places where the current code just uses anaddress
.(Null address is used in submitting txs to deploy contracts. Deploy txs use null as their destination address.)
The text was updated successfully, but these errors were encountered: