sweep: change MaxInputsPerTx from int to uint32

This commit is contained in:
yyforyongyu
2024-03-20 05:56:56 +08:00
parent 521b1fc34a
commit d0a8f27d84
5 changed files with 9 additions and 9 deletions

View File

@ -30,7 +30,7 @@ var (
testMaxSweepAttempts = 3
testMaxInputsPerTx = 3
testMaxInputsPerTx = uint32(3)
defaultFeePref = Params{Fee: FeeEstimateInfo{ConfTarget: 1}}
)