Skip to content

Commit

Permalink
changed BigInt to string for mobile interface
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsan6sha committed Dec 4, 2023
1 parent 5c4318d commit d6d7828
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blockchain/interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ type AccountBalanceRequest struct {
Account string `json:"account"`
}
type AccountBalanceResponse struct {
Amount BigInt `json:"amount"`
Amount string `json:"amount"`
}

type AssetsBalanceRequest struct {
Expand All @@ -102,7 +102,7 @@ type AssetsBalanceRequest struct {
AssetId string `json:"asset_id"`
}
type AssetsBalanceResponse struct {
Amount BigInt `json:"amount"`
Amount string `json:"amount"`
}

type PoolCreateRequest struct {
Expand Down

0 comments on commit d6d7828

Please sign in to comment.