Re: How to send transaction to address from a wallet ?

2018-08-13 Thread Diyor Rustamov
ельник, 13 августа 2018 г., 1:02:24 UTC+5 пользователь Andreas Schildbach написал: > > See https://bitcoinj.github.io/working-with-the-wallet#creating-spends > > > > On 08/10/2018 10:40 AM, Diyor Rustamov wrote: > > Hi, I'm going to make send payment with bitcoinj f

How to send transaction to address from a wallet ?

2018-08-10 Thread Diyor Rustamov
Hi, I'm going to make send payment with bitcoinj from a wallet. I got the error > > Exception in thread "main" org.bitcoinj.core.InsufficientMoneyException: > Insufficient money, missing 0.0004729 BTC public static Transaction send(Wallet wallet,String destinationAddress,long satoshis,

How to create multiple wallets?

2018-08-10 Thread Diyor Rustamov
public void createWallet(NetworkParameters parameters){ Wallet wallet1 = new Wallet(parameters); DeterministicSeed deterministicSeed1 = wallet1.getKeyChainSeed(); List list1 = deterministicSeed1.getMnemonicCode(); } with this method I get 2 equal seed for 2 createWallet calls.