-
Notifications
You must be signed in to change notification settings - Fork 163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Output sum column of the epoch table can overflow #197
Comments
The output sum field is a When the sum of transactions outputs is greater than 102 times max lovelace in the system (basically There are two possible solutions to this:
|
This column is the sum of transactions outputs for the epoch. On test networks (never been seen on mainnet) it is possible for this sum to end up larger than the maximum positive value that can be stored in a 64 bit signed integer ('Int64'). However, the output sum was being stored store in a 64 bit unsigned integer ('Word64') but the Persistent library does not correctly supported 'Word64'. Instead it "casts" it from 'Word64' to 'Int64'. For values great that the max positive value of an 'Int64' this results on the value wrapping to negative and hence being rejected by the SQL domain constraint which requres 'outsum >= 0'. This solution switches 'outsum' in the Haskell world from 'Word64' to 'Word128' which is incredibly unlikley to overflow given the limitation on number of transactions per block and per epoch. On the SQL side we use an PostgreSQL type of 'numeric (38, 0)'. Closes: #197
On some testnets (i was aware of the benchmarking team hitting this over 3 months ago) it is possible for the sum of the tx outputs for an epoch to overflow the
Word64
values. This is related to #163The best solution for this would be to use
Word128
for the output sum field. I do have a WIP branch with this idea, but it needs some work.The text was updated successfully, but these errors were encountered: