web3.eth.getAccounts仅返回有限的地址

时间:2018-02-02 06:45:17

标签: ethereum web3js web3

在我的网站上,目前有超过4700多个地址。当我尝试使用'web3.eth.getAccounts'获取所有帐户时,它只返回3360个地址。我不知道为什么会这样。对于未在getAccounts中列出的其余地址,我尝试使用'getBalance'来检查地址是否有效,但它会返回预期余额。

web3.eth.getBlock('latest',function(blockErr,getBlock) {
  // console.log(getBlock);
  web3.eth.getGasPrice(function(priceErr, getGasPrice) {
  // console.log(getGasPrice);
    web3.eth.getAccounts(function(accountsErr, accounts) {
      console.log(accounts.length) // 3360+
    })
  })
})

我错过了什么吗?

0 个答案:

没有答案