fix: fix the client test issues

This commit is contained in:
Sai Kumar
2022-06-02 13:23:03 +05:30
parent 007e27dcbc
commit e5cad8c48b
3 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ const ExpiryTimeAttributeName = "expiryTime"
func getGQLCoin(coin sdk.Coin) *Coin {
gqlCoin := Coin{
Type: coin.Denom,
Quantity: coin.Amount.String(),
Quantity: coin.Amount.BigInt().String(),
}
return &gqlCoin