mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-05 17:05:50 +02:00
sweep: change MaxInputsPerTx
from int
to uint32
This commit is contained in:
@@ -19,7 +19,7 @@ var (
|
||||
// DefaultMaxInputsPerTx specifies the default maximum number of inputs
|
||||
// allowed in a single sweep tx. If more need to be swept, multiple txes
|
||||
// are created and published.
|
||||
DefaultMaxInputsPerTx = 100
|
||||
DefaultMaxInputsPerTx = uint32(100)
|
||||
|
||||
// ErrLocktimeConflict is returned when inputs with different
|
||||
// transaction nLockTime values are included in the same transaction.
|
||||
|
Reference in New Issue
Block a user