mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 11:59:30 +00:00
bch testnet send fix
This commit is contained in:
parent
4cc7beac80
commit
573668a333
1 changed files with 3 additions and 1 deletions
|
@ -2733,7 +2733,9 @@ class BitcoinCashWallet extends CoinServiceAPI
|
|||
required List<String> recipients,
|
||||
required List<int> satoshiAmounts,
|
||||
}) async {
|
||||
final builder = bitbox.Bitbox.transactionBuilder();
|
||||
final builder = bitbox.Bitbox.transactionBuilder(
|
||||
testnet: coin == Coin.bitcoincashTestnet,
|
||||
);
|
||||
|
||||
// retrieve address' utxos from the rest api
|
||||
List<bitbox.Utxo> _utxos =
|
||||
|
|
Loading…
Reference in a new issue