forked from Qortal/qortal
Hardcode fee to MAINNET_FEE when sending coins.
This commit is contained in:
parent
a7ea6ec80d
commit
c7bc1d7dcd
@ -308,7 +308,7 @@ public class PirateChain extends Bitcoiny {
|
|||||||
// Build spend
|
// Build spend
|
||||||
JSONObject txn = new JSONObject();
|
JSONObject txn = new JSONObject();
|
||||||
txn.put("input", walletController.getCurrentWallet().getWalletAddress());
|
txn.put("input", walletController.getCurrentWallet().getWalletAddress());
|
||||||
//txn.put("fee", pirateChainSendRequest.feePerByte); // We likely need to specify total fee, instead of per byte
|
txn.put("fee", MAINNET_FEE);
|
||||||
|
|
||||||
JSONObject output = new JSONObject();
|
JSONObject output = new JSONObject();
|
||||||
output.put("address", pirateChainSendRequest.receivingAddress);
|
output.put("address", pirateChainSendRequest.receivingAddress);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user