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
Copy file name to clipboardExpand all lines: cmd/main.go
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -138,9 +138,9 @@ func init() {
138
138
rootCmd.Flags().Duration("refresh-gas-estimates-interval", 12*time.Hour, "Interval for resetting cached gas estimates and gas-adjustment levels (<=0 disables)")
139
139
140
140
// Auto-bridge: keep wallet at a fixed balance by bridging the excess to Ethereum
141
-
rootCmd.Flags().Uint64("auto-balance-to-keep", 0, "Keep this amount of loya in the wallet; bridge any excess to Ethereum at --auto-balance-execution-time (0 = disabled)")
142
-
rootCmd.Flags().String("auto-balance-execution-time", "00:00", "UTC time to execute the auto-balance bridge (HH:MM, e.g. '03:00')")
143
-
rootCmd.Flags().String("auto-balance-bridge-to-eth-addr", "", "Ethereum address to bridge excess tokens to (required when auto-balance-to-keep > 0)")
141
+
rootCmd.Flags().Uint64(daemonflags.FlagAutoBalanceToKeep, 0, "Keep this amount of loya in the wallet; bridge any excess to Ethereum at --auto-balance-execution-time (0 = disabled)")
142
+
rootCmd.Flags().String(daemonflags.FlagAutoBalanceExecutionTime, "00:00", "UTC time to execute the auto-balance bridge (HH:MM, e.g. '03:00')")
143
+
rootCmd.Flags().String(daemonflags.FlagAutoBalanceBridgeToEthAddr, "", "Ethereum address to bridge excess tokens to (required when auto-balance-to-keep > 0)")
0 commit comments