Загрузить файлы в «/»
This commit is contained in:
parent
8cf5528c0c
commit
d24d9d0bc7
1 changed files with 2 additions and 2 deletions
|
@ -126,10 +126,10 @@ func Transfer(address interop.Hash160, amount int, fromToken string, toToken str
|
|||
|
||||
func printBalance(address interop.Hash160) bool {
|
||||
wallet := GetWallet(address)
|
||||
runtime.Log("Balance: ")
|
||||
fmt.Println("Balance: ")
|
||||
|
||||
for key, value := range wallet.Tokens {
|
||||
runtime.Log(key + ": " + strconv.Itoa(value))
|
||||
fmt.Println(key + ":" + strconv.Itoa(value))
|
||||
}
|
||||
|
||||
return true
|
||||
|
|
Loading…
Reference in a new issue