This commit is contained in:
Patrick O'Grady 2020-10-27 15:25:08 -07:00
parent 165c633575
commit e1d4547c5b
No known key found for this signature in database
GPG key ID: 8DE11C985C0C8D85
2 changed files with 5 additions and 2 deletions

View file

@ -39,7 +39,7 @@ func (h *BalanceStorageHelper) AccountBalance(
block *types.BlockIdentifier,
) (*types.Amount, error) {
return &types.Amount{
Value: "0",
Value: zeroValue,
Currency: currency,
}, nil
}

View file

@ -53,6 +53,9 @@ const (
// this is the estimated memory overhead for each
// block fetched by the indexer.
sizeMultiplier = 15
// zeroValue is 0 as a string
zeroValue = "0"
)
var (
@ -804,7 +807,7 @@ func (i *Indexer) GetBalance(
)
if errors.Is(err, storage.ErrAccountMissing) {
return &types.Amount{
Value: "0",
Value: zeroValue,
Currency: currency,
}, blockResponse.Block.BlockIdentifier, nil
}