Skip to content

Commit

Permalink
Merge pull request #152 from SiaFoundation/nate/utxo-reservation
Browse files Browse the repository at this point in the history
Increase default UTXO reservation duration
  • Loading branch information
lukechampine authored Jan 15, 2025
2 parents dcc73ae + 08c281e commit b886cac
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
default: patch
---

# Increased default UTXO reservation in SingleAddressWallet to 3 hours
2 changes: 1 addition & 1 deletion wallet/wallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -925,7 +925,7 @@ func NewSingleAddressWallet(priv types.PrivateKey, cm ChainManager, store Single
DefragThreshold: 30,
MaxInputsForDefrag: 30,
MaxDefragUTXOs: 10,
ReservationDuration: 15 * time.Minute,
ReservationDuration: 3 * time.Hour,
Log: zap.NewNop(),
}

Expand Down

0 comments on commit b886cac

Please sign in to comment.