You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this commit, we add the --no-backup-archive with a default
as false. When set to true then previous channel backup file will
not be archived but replaced. We also modify TestUpdateAndSwap
test to make sure the new behaviour works as expected.
Copy file name to clipboardExpand all lines: config.go
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -360,6 +360,8 @@ type Config struct {
360
360
MaxPendingChannelsint`long:"maxpendingchannels" description:"The maximum number of incoming pending channels permitted per peer."`
361
361
BackupFilePathstring`long:"backupfilepath" description:"The target location of the channel backup file"`
362
362
363
+
NoBackupArchivebool`long:"no-backup-archive" description:"If set to true, channel backups will be deleted or replaced rather than being archived to a separate location."`
364
+
363
365
FeeURLstring`long:"feeurl" description:"DEPRECATED: Use 'fee.url' option. Optional URL for external fee estimation. If no URL is specified, the method for fee estimation will depend on the chosen backend and network. Must be set for neutrino on mainnet." hidden:"true"`
0 commit comments