Remove balances. Will readd later

This commit is contained in:
Sam
2019-06-11 23:19:52 -04:00
parent e5fa55e398
commit 63e41c70ab

View File

@ -95,15 +95,6 @@ func walletAPIOut(keybasePath string, w walletOut) (walletOutResult, error) {
return r, nil return r, nil
} }
// Balances() returns a list of all wallets on the current user's account, including their current balance.
func (k Keybase) Balances() ([]WalletResult, error) {
m := walletOut{}
m.Method = "balances"
r, err := walletAPIOut(k.Path, m)
return r.Result, err
}
// TxDetail() returns details of a stellar transaction // TxDetail() returns details of a stellar transaction
func (k Keybase) TxDetail(txid string) (WalletResult, error) { func (k Keybase) TxDetail(txid string) (WalletResult, error) {
m := walletOut{} m := walletOut{}