1

在我的网站上,目前有 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+
    })
  })
})

我错过了什么吗?

4

0 回答 0