Hi, Im creating an Android App, Im being able to receive coins but when I
try to send them says that Im missing Bitcoins to send, I have 0.006 BTC in
a Testnet Wallet, I dont really know what Im missing to achieve sending
BTC. The BTC I received now have more that 3 block depth.
walletAppKit = new WalletAppKit(testNet, walletDir, "bitcoin_wallet"){
@Override
protected void onSetupCompleted() {
super.onSetupCompleted();
if (wallet().getImportedKeys().size() < 1) {
wallet().importKey(new ECKey());
}
Coin value1 =
walletAppKit.wallet().getBalance(Wallet.BalanceType.AVAILABLE); //0.00BTC
Coin value2 =
walletAppKit.wallet().getBalance(Wallet.BalanceType.AVAILABLE_SPENDABLE);
//0.00BTC
Coin value3 =
walletAppKit.wallet().getBalance(Wallet.BalanceType.ESTIMATED); //0.006 BTC
Coin value4 =
walletAppKit.wallet().getBalance(Wallet.BalanceType.ESTIMATED_SPENDABLE);
//0.006
....
--
You received this message because you are subscribed to the Google Groups
"bitcoinj" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.