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 Apr 15, 2024. It is now read-only.
Edict id, amount, and vout are all be deltas. Id is always a delta, amount is a delta if the ID is the same as the last, and output is a delta if the amount is the same as the last.
The text was updated successfully, but these errors were encountered:
Under realistic circumstances, a block will never have more than 2**16 transactions, so an ID can be encoded as a single number as height << 16 | index.
Edicts are processed in order, so we can't fully reorder them. However, we can reorder edicts by id. So it looks like the best bet is do delta encode edict IDs, but not amounts.
Edict id, amount, and vout are all be deltas. Id is always a delta, amount is a delta if the ID is the same as the last, and output is a delta if the amount is the same as the last.
The text was updated successfully, but these errors were encountered: