3

我正在尝试学习 bitcoinj API,并且我已经编写了下面的测试代码。我创建了一个帐户:

http://tpfaucet.appspot.com/

所以我可以使用假币并测试发送/接收。当我登录该 URL 时,我的帐户显示了 14 个假 BTC。但是,我下面的代码表明我有 0 个硬币。有人可以帮我理解我错过了什么吗?我都使用了getBalancegetWatchedBalance但没有运气。

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);
    }

}
4

3 回答 3

3

分配后您没有使用 forwardingAdress 。我猜这不是那个钱包里公钥的地址吗?

要获得(尚未)在钱包中的地址的余额,您可以执行以下操作:

  1. 找到地址的公钥。例如,主网地址的此服务:https ://www.biteasy.com/blockchain/addresses/1CjgioGLRpLyEiFSsLpYdEKfaFjWg3ZWSS
  2. 将此公钥添加到钱包: kit.wallet().addKey(new ECKey(null, Hex.decode("0210fdade86b268597e9aa4f2adc314fe459837be831aeb532f04b32c160b4e50a")));
  3. 将钱包置于自动保存模式 kit.setAutoSave(true);
  4. 运行这个

现在你有了想要知道钱包余额的公钥。删除区块链文件:forwarding-service-testnet.spvchain

你的钱包里有一个没有创建日期的公钥,区块链下载需要更长的时间。但最终你应该看到一个适当的平衡。

WalletAppKit 并不意味着检查它没有生成或稍后添加的密钥对的余额。所以这就是为什么这应该更复杂。

您可以创建一个普通钱包,添加密钥,将其添加到 PeerGroup 和 SPVBlockschain,然后开始下载块以获取计算余额所需的信息。每当您将密钥添加到钱包时,如果密钥比上一个区块更旧,则必须重新下载 SPVBlockchain。

于 2014-03-22T22:02:33.940 回答
1

在您的代码中,您正在检查钱包的余额(其中不包含任何地址),而不是您创建的地址的余额。您应该尝试将您从网络创建的地址的密钥导入您在本地创建的钱包中,然后该地址的余额出现在您的钱包中。

于 2014-07-09T08:13:56.983 回答
0

您可以使用以下方式检查您的 bitcoinj 余额

    WalletAppKit kit = new WalletAppKit(params, new File("."), "walletappkit2");

   System.out.println("you have got :" + MonetaryFormat.BTC.noCode().format(kit.wallet().getBalance()).toString());
于 2017-09-04T14:55:46.633 回答