bitcoinj で bitcoin-qt ウォレットを開こうとしています。私はこの簡単なコードを持っています:
private static final File WALLET_FILE = new File("__PATH__");
public static void main(String[] args) {
Wallet wallet;
try {
wallet = Wallet.loadFromFile(WALLET_FILE);
} catch (IOException e) {
System.out.println("Couldn't open wallet: " + e);
return;
}
System.out.println("Balance: " + wallet.getBalance());
}
エラーが発生します:
Couldn't open wallet: com.google.protobuf.InvalidProtocolBufferException: Protocol message contained an invalid tag (zero).
bitcoin-qt でステータスを確認すると、ウォレットが同期しているようです。
私はビットコインの専門家ではありませんが、解決策をご存知でしょうか。