Fix typos (#133)

* Fix typos

* revert chains/unit_testnet

* revert chains

* fix review comments (thx @AlexVanin)
This commit is contained in:
Evgeniy Kulikov 2019-02-13 21:01:10 +03:00 committed by decentralisedkev
parent 845d719698
commit 67cbcac643
25 changed files with 40 additions and 40 deletions

View file

@ -23,7 +23,7 @@ type AccountStateResponse struct {
Result *Account `json:"result"`
}
// Account respresents details about a NEO account.
// Account represents details about a NEO account.
type Account struct {
Version int `json:"version"`
ScriptHash string `json:"script_hash"`
@ -33,7 +33,7 @@ type Account struct {
Balances []*Balance
}
// Balance respresents details about a NEO account balance.
// Balance represents details about a NEO account balance.
type Balance struct {
Asset string `json:"asset"`
Value string `json:"value"`