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 Sep 28, 2021. It is now read-only.
dst address is null in the case of a contract deployment, right now we are using a "0" representation of that 0x00000000000000000000 which is problematic for two reasons
It takes up more space than NULL
Sometimes the dst actually is0x00000000000000000000 e.g. in the case of a burn transaction, and we want to be able to differentiate this
First, UPDATE eth.transaction_cids SET dst = NULL WHERE dst = '0x00000000000000000000';
Then, ALTER eth.transaction_cids ALTER COLUMN dst SET NOT NULL;
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
dst address is null in the case of a contract deployment, right now we are using a "0" representation of that
0x00000000000000000000
which is problematic for two reasons0x00000000000000000000
e.g. in the case of a burn transaction, and we want to be able to differentiate thisFirst,
UPDATE eth.transaction_cids SET dst = NULL WHERE dst = '0x00000000000000000000';
Then,
ALTER eth.transaction_cids ALTER COLUMN dst SET NOT NULL;
The text was updated successfully, but these errors were encountered: