diff --git a/daemon/algod/api/client/restClient.go b/daemon/algod/api/client/restClient.go index 7f8b2d4121..596a8d4581 100644 --- a/daemon/algod/api/client/restClient.go +++ b/daemon/algod/api/client/restClient.go @@ -422,7 +422,7 @@ func (client RestClient) AccountInformation(address string) (response v1.Account func (client RestClient) AccountInformationV2(address string, includeCreatables bool) (response generatedV2.Account, err error) { var infoParams accountInformationParams if includeCreatables { - infoParams = accountInformationParams{Exclude: "", Format: "json"} + infoParams = accountInformationParams{Exclude: "none", Format: "json"} } else { infoParams = accountInformationParams{Exclude: "all", Format: "json"} } diff --git a/libgoal/libgoal.go b/libgoal/libgoal.go index a0107ba77d..2fa488ec98 100644 --- a/libgoal/libgoal.go +++ b/libgoal/libgoal.go @@ -687,7 +687,7 @@ func (c *Client) RawAccountApplicationInformation(accountAddress string, applica return } -// AccountAssetInformation gets account information about a given app. +// AccountAssetInformation gets account information about a given asset. func (c *Client) AccountAssetInformation(accountAddress string, assetID uint64) (resp generatedV2.AccountAssetResponse, err error) { algod, err := c.ensureAlgodClient() if err == nil { @@ -696,7 +696,7 @@ func (c *Client) AccountAssetInformation(accountAddress string, assetID uint64) return } -// RawAccountAssetInformation gets account information about a given app. +// RawAccountAssetInformation gets account information about a given asset. func (c *Client) RawAccountAssetInformation(accountAddress string, assetID uint64) (accountResource modelV2.AccountAssetModel, err error) { algod, err := c.ensureAlgodClient() if err == nil {