Specific fee in transaction

2

Is there any possible way to send transaction with specific fee (not fee per kb) from wallet in bitcoinj? Where should I look to find a solution :)? My code:

Address address = Address.fromBase58(BitcoinNetwork.mode.GetParams(), destAddress);
SendRequest req = SendRequest.to(address, Coin.valueOf(value));
completeTx(req);

Dragomirus

Posted 2016-09-28T13:04:20.180

Reputation: 151

No answers