Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
12 changes: 10 additions & 2 deletions client/v2/indexer/searchForAccounts.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ type SearchAccountsParams struct {
NextToken string `url:"next,omitempty"`

// Round include results for the specified round. For performance reasons, this
// parameter may be disabled on some configurations.
// parameter may be disabled on some configurations. Using application-id or
// asset-id filters will return both creator and opt-in accounts. Filtering by
// include-all will return creator and opt-in accounts for deleted assets and
// accounts. Non-opt-in managers are not included in the results when asset-id is
// used.
Round uint64 `url:"round,omitempty"`
}

Expand Down Expand Up @@ -124,7 +128,11 @@ func (s *SearchAccounts) NextToken(NextToken string) *SearchAccounts {
}

// Round include results for the specified round. For performance reasons, this
// parameter may be disabled on some configurations.
// parameter may be disabled on some configurations. Using application-id or
// asset-id filters will return both creator and opt-in accounts. Filtering by
// include-all will return creator and opt-in accounts for deleted assets and
// accounts. Non-opt-in managers are not included in the results when asset-id is
// used.
func (s *SearchAccounts) Round(Round uint64) *SearchAccounts {
s.p.Round = Round
return s
Expand Down
1 change: 0 additions & 1 deletion test/applications_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,6 @@ func theTransientAccountShouldHave(appCreated string, byteSlices, uints int,
return nil
}


func suggestedParamsAlgodV2() error {
var err error
sugParams, err = aclv2.SuggestedParams().Do(context.Background())
Expand Down
1 change: 0 additions & 1 deletion test/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ func expectErrorStringToContain(contains string) error {
"actual error string: %s", contains, globalErrForExamination.Error())
}


func loadResource(filepath string) ([]byte, error) {
return ioutil.ReadFile(path.Join("features", "resources", filepath))
}