Skip to content

Commit

Permalink
Update SoftMaxUTXOSetSize to max int
Browse files Browse the repository at this point in the history
  • Loading branch information
jdowning100 committed Oct 24, 2024
1 parent ac3a4ef commit 0f6fa7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion params/protocol_params.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ const (
ConversionLockPeriod uint64 = 10 // The number of zone blocks that a conversion output is locked for
MinQiConversionDenomination = 10
ConversionConfirmationContext = common.PRIME_CTX // A conversion requires a single coincident Dom confirmation
SoftMaxUTXOSetSize = 10000000 // The soft maximum number of UTXOs that can be stored in the UTXO set
SoftMaxUTXOSetSize = math.MaxInt // The soft maximum number of UTXOs that can be stored in the UTXO set
MinimumTrimDepth = math.MaxInt // The minimum block depth of the chain to begin trimming
QiToQuaiConversionGas = 100000 // The gas used to convert Qi to Quai
DefaultCoinbaseLockup = 0 // The default lockup byte for coinbase rewards
Expand Down

0 comments on commit 0f6fa7a

Please sign in to comment.