summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Akiki <stephen.akiki@algorand.com>2022-05-26 09:59:39 -0400
committerStephen Akiki <stephen.akiki@algorand.com>2022-05-26 09:59:39 -0400
commitf007e3e27e41ee88d2b5c8b0ad8b3b503f43486b (patch)
treea7563b34d491e88ccf00ed026efcb7e1b60fb884
parent1eed267f630556ad1f135d2e25dda65671cb18c8 (diff)
-rw-r--r--cmd/goal/account.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/cmd/goal/account.go b/cmd/goal/account.go
index b18459cc0..c78ed0872 100644
--- a/cmd/goal/account.go
+++ b/cmd/goal/account.go
@@ -835,7 +835,11 @@ var changeOnlineCmd = &cobra.Command{
},
}
-func changeAccountOnlineStatus(acct string, goOnline bool, txFile string, wallet string, firstTxRound, lastTxRound, fee uint64, leaseBytes [32]byte, dataDir string, client libgoal.Client) error {
+func changeAccountOnlineStatus(
+ acct string, goOnline bool, txFile string, wallet string,
+ firstTxRound, lastTxRound, fee uint64, leaseBytes [32]byte,
+ dataDir string, client libgoal.Client,
+) error {
// Generate an unsigned online/offline tx
var utx transactions.Transaction
var err error
@@ -1575,7 +1579,7 @@ func legacyPartkeyInfoCommand() {
}
for filename, part := range parts {
- fmt.Println("------------------------------------------------------------------")
+ fmt.Println(strings.Repeat("-", 40))
info := partkeyInfo{
Address: part.Address().String(),
FirstValid: part.FirstValid,