Add RequestPayment to wallet api

This commit is contained in:
Sam
2019-09-13 17:02:47 -04:00
parent c624a0d0f8
commit a11d16faa0
2 changed files with 13 additions and 1 deletions

View File

@ -499,6 +499,7 @@ type keybase interface {
loggedIn() bool
username() string
version() string
RequestPayment(user string, amount float64, memo ...string)
}
type status struct {

View File

@ -3,6 +3,7 @@ package keybase
import (
"encoding/json"
"errors"
"fmt"
)
// walletAPIOut sends JSON requests to the wallet API and returns its response.
@ -42,9 +43,19 @@ func (k *Keybase) StellarAddress(user string) (string, error) {
m.Method = "lookup"
m.Params.Options.Name = user
r, err := walletAPIOut(k.Path, m)
r, err := walletAPIOut(k, m)
if err != nil {
return "", err
}
return r.Result.AccountID, err
}
// RequestPayment sends a request for payment to a user
func (k *Keybase) RequestPayment(user string, amount float64, memo ...string) error {
if len(memo) > 0 {
_, err := k.Exec("wallet", "request", user, fmt.Sprintf("%f", amount), "-m", memo[0])
return err
}
_, err := k.Exec("wallet", "request", user, fmt.Sprintf("%f", amount))
return err
}