Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
e19795b
Initial stuctures and consensus flags for txn.Access
jannotti Mar 26, 2025
98272a3
Committing before some state delta cleanup
jannotti Mar 28, 2025
b8578c3
TestAssets test coverage for tx.Access
jannotti Apr 2, 2025
872e497
wellFormed for tx.Acccess checks internal indices
jannotti Apr 2, 2025
dbbd1bd
Testing and fixes for cross-product resources
jannotti Apr 3, 2025
2ad657d
Many app call well-formed tests for tx.Access
jannotti Apr 4, 2025
13bf5c7
Reflection based testing for Empty() completeness
jannotti Apr 9, 2025
4609198
Correctly check and test for handling multiple types in one elt
jannotti Apr 9, 2025
62751b6
Test fixes for quota bump
jannotti Apr 9, 2025
728815a
NearZero testing
jannotti Apr 10, 2025
5b820c5
Add goal switches to populate access list transactions.
jannotti Apr 11, 2025
3e12d5a
Merge remote-tracking branch 'upstream/master' into access-list
jannotti May 2, 2025
3bcbb16
Merge remote-tracking branch 'upstream/master' into access-list
jannotti Jun 10, 2025
0bbfc58
Fixup Empty check
jannotti Jun 10, 2025
357404c
Shorter wait for deprecation window
jannotti Jun 12, 2025
aff49f2
Export the newly added types for access list
jannotti Jun 12, 2025
edadbff
Merge remote-tracking branch 'upstream/master' into access-list
jannotti Jun 13, 2025
1bac31f
goal e2e sub tests
jannotti Jun 17, 2025
a4831f7
Don't let pre resource sharing programs use tx.Access
jannotti Jun 23, 2025
7972351
Add checks for version / access
jannotti Jun 24, 2025
6551371
Merge remote-tracking branch 'upstream/master' into access-list
jannotti Jun 24, 2025
4628e98
Give a txn so checkprograms doesn't panic in test
jannotti Jun 24, 2025
b31d52e
Repeat app-assets e2e test, btu for --access
jannotti Jun 26, 2025
656e398
Fixups to use ver9 to test access, and shellcheck problems
jannotti Jun 27, 2025
3e00dbc
Use `exit 1` after bare use of `[[ ... ]]`
jannotti Jun 30, 2025
93cdf2f
Remove code that is useless since ver >= sharedResourcesVersion
jannotti Jun 30, 2025
db6cd4e
Use + to separate parts of a holding or local.
jannotti Jun 30, 2025
c1ea94b
Merge remote-tracking branch 'upstream/master' into access-list
jannotti Jul 1, 2025
481ce3b
Update data/transactions/logic/evalStateful_test.go
jannotti Jul 10, 2025
6d01ada
Describe availaibility under tx.Access
jannotti Jul 8, 2025
be9f82d
Unit test for cliAddress
jannotti Jul 10, 2025
f3b2375
Update scripts/export_sdk_types.py
jannotti Jul 10, 2025
658ac8f
clarity
jannotti Jul 10, 2025
801dc21
Remove inadvertant changes
jannotti Jul 10, 2025
82b6abb
No need for separate subtests, just assert in loop
jannotti Jul 10, 2025
81ae84a
CR typos
jannotti Jul 16, 2025
f806cb2
Don't use XXX in comment since people use it to mean TODO
jannotti Jul 17, 2025
7434d1f
comment on 0 interpretation
jannotti Jul 17, 2025
59e60b7
comment on 0 interpretation
jannotti Jul 17, 2025
dd13b79
Remove bad comment
jannotti Jul 18, 2025
b0e1211
CR updates
jannotti Jul 21, 2025
a28efb3
remove unneeded empty tests
jannotti Aug 5, 2025
bde4541
Merge remote-tracking branch 'upstream/master' into access-list
jannotti Aug 5, 2025
819129d
Merge remote-tracking branch 'upstream/master' into access-list
jannotti Aug 6, 2025
35572ee
Update data/transactions/logic/resources.go
jannotti Aug 6, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cmd/goal/account.go
Original file line number Diff line number Diff line change
Expand Up @@ -923,14 +923,14 @@ var changeOnlineCmd = &cobra.Command{

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

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

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