我正在尝试学习 bitcoinj API,我已经编写了下面的测试代码。我创建了一个帐户:
http://tpfaucet.appspot.com/
所以我可以使用假币并测试发送/接收。当我登录 URL 时,我的帐户显示了 14 个假 BTC。但是,我下面的代码表明我有 0 个硬币。有人可以帮助我理解我错过了什么吗?我使用 getBalance
和 getWatchedBalance
都没有运气。
public class CheckBalance {
public static void main(String[] args) throws Exception {
// This line makes the log output more compact and easily read, especially when using the JDK log adapter.
BriefLogFormatter.init();
// Figure out which network we should connect to. Each one gets its own set of files.
final NetworkParameters params = TestNet3Params.get();
final String filePrefix = "forwarding-service-testnet";
// Parse the address given as the first parameter.
final Address forwardingAddress = new Address(params, "bogusHash"); //note, I replace bogusHash when I really run
// Start up a basic app using a class that automates some boilerplate.
final WalletAppKit kit = new WalletAppKit(params, new File("."), filePrefix);
// Download the block chain and wait until it's done.
kit.startAndWait();
System.out.println("You have : " +kit.wallet().getWatchedBalance() + " bitcoins");
System.exit(0);
}
}
最佳答案
分配后您没有使用 forwardingAdress。我猜这不是那个钱包里的公钥的地址?
要获取(尚未)在钱包中的地址的余额,您可以执行以下操作:
kit.wallet().addKey(new ECKey(null, Hex.decode("0210fdade86b268597e9aa4f2adc314fe459837be831aeb532f04b32c160b4e50a")));
kit.setAutoSave(true);
现在您有了想要知道钱包余额的公钥。删除区块链文件:forwarding-service-testnet.spvchain
您的钱包中有一个没有创建日期的公钥,并且区块链下载将花费更长的时间。但最终你应该看到一个适当的平衡。
WalletAppKit 并不是为了检查它没有生成或稍后添加的 key 对的余额。所以这就是为什么这应该更复杂。
您可以创建一个普通的钱包,添加 key ,将其添加到 PeerGroup 和 SPVBlockschain,然后开始下载区块以获取计算余额所需的信息。每当您向钱包添加 key 时,如果 key 早于上一个区块,您必须重新下载 SPVBlockchain。
关于java - 使用bitcoinj检查钱包余额,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22186273/