TypeError:无法读取属性' name'在创建新钱包时为null

时间:2018-06-04 15:03:30

标签: javascript node.js coinbase-api

我使用文档上提供的代码创建一个新的钱包,它说我得到了一个:TypeError:无法读取属性' name' null错误。

我的代码如下:

var Client = require('coinbase').Client;

// blank intentionally, but completed actually
var client = new Client({
    'apiKey': '',
    'apiSecret': '',
});

client.createAccount({'name': 'New Wallet'}, function(err, acct) {
    console.log(acct.name + ': ' + acct.balance.amount + ' ' + acct.balance.currency);
});

我做错了什么?

1 个答案:

答案 0 :(得分:1)

acct为空,可能是因为createAccount给出了错误。尝试

if(err){
 //handle err
 console.log(err)
}

这应该提供有关正在发生的事情的更多信息