Skip to content

Apps: txn.Access list for access to more resources #6286

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
6 changes: 3 additions & 3 deletions cmd/goal/account.go
Original file line number Diff line number Diff line change
Expand Up @@ -921,14 +921,14 @@ var changeOnlineCmd = &cobra.Command{

firstTxRound, lastTxRound, _, err := client.ComputeValidityRounds(firstValid, lastValid, numValidRounds)
if err != nil {
reportErrorf(err.Error())
reportErrorln(err)
}
err = changeAccountOnlineStatus(
accountAddress, online, statusChangeTxFile, walletName,
firstTxRound, lastTxRound, transactionFee, scLeaseBytes(cmd), dataDir, client,
)
if err != nil {
reportErrorf(err.Error())
reportErrorln(err)
}
},
}
Expand Down Expand Up @@ -1097,7 +1097,7 @@ var renewParticipationKeyCmd = &cobra.Command{

err = generateAndRegisterPartKey(accountAddress, currentRound, roundLastValid, txRoundLastValid, transactionFee, scLeaseBytes(cmd), keyDilution, walletName, dataDir, client)
if err != nil {
reportErrorf(err.Error())
reportErrorln(err)
}

version := config.GetCurrentVersion()
Expand Down
Loading
Loading