2019-08-26 19:00:31 +00:00
|
|
|
package kbchat
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
2020-02-08 15:50:16 +00:00
|
|
|
|
|
|
|
"github.com/keybase/go-keybase-chat-bot/kbchat/types/stellar1"
|
2019-08-26 19:00:31 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type WalletOutput struct {
|
2020-02-08 15:50:16 +00:00
|
|
|
Result stellar1.PaymentCLILocal `json:"result"`
|
2019-08-26 19:00:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *API) GetWalletTxDetails(txID string) (wOut WalletOutput, err error) {
|
|
|
|
a.Lock()
|
|
|
|
defer a.Unlock()
|
|
|
|
|
|
|
|
apiInput := fmt.Sprintf(`{"method": "details", "params": {"options": {"txid": "%s"}}}`, txID)
|
|
|
|
cmd := a.runOpts.Command("wallet", "api")
|
|
|
|
cmd.Stdin = strings.NewReader(apiInput)
|
|
|
|
var out bytes.Buffer
|
|
|
|
cmd.Stdout = &out
|
|
|
|
err = cmd.Run()
|
|
|
|
if err != nil {
|
|
|
|
return wOut, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := json.Unmarshal(out.Bytes(), &wOut); err != nil {
|
|
|
|
return wOut, fmt.Errorf("unable to decode wallet output: %s", err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return wOut, nil
|
|
|
|
}
|