mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-11 05:04:35 +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<String> recipients,
|
||||||
required List<int> satoshiAmounts,
|
required List<int> satoshiAmounts,
|
||||||
}) async {
|
}) async {
|
||||||
final builder = bitbox.Bitbox.transactionBuilder();
|
final builder = bitbox.Bitbox.transactionBuilder(
|
||||||
|
testnet: coin == Coin.bitcoincashTestnet,
|
||||||
|
);
|
||||||
|
|
||||||
// retrieve address' utxos from the rest api
|
// retrieve address' utxos from the rest api
|
||||||
List<bitbox.Utxo> _utxos =
|
List<bitbox.Utxo> _utxos =
|
||||||
|
|
Loading…
Reference in a new issue