diff options
Diffstat (limited to 'purchase')
| -rw-r--r-- | purchase/purchase.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/purchase/purchase.go b/purchase/purchase.go index 0bce2a4..45940f2 100644 --- a/purchase/purchase.go +++ b/purchase/purchase.go @@ -4,7 +4,8 @@ import ( "github.com/teddywing/new-house-on-the-block/vendor/_nuts/github.com/fabioberger/coinbase-go" ) -func SendMoney(from_key string, from_secret string, to string, amount string) (transaction_id string, err error) { +func SendMoney(from_key string, from_secret string, + to string, amount string) (transaction_id string, err error) { c := coinbase.ApiKeyClientSandbox(from_key, from_secret) params := &coinbase.TransactionParams{ |
