mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-18 16:44:32 +00:00
firo bug fix and test update
This commit is contained in:
parent
255020f1d8
commit
d4499ac3bc
2 changed files with 4 additions and 1 deletions
|
@ -234,7 +234,7 @@ Future<Map<String, dynamic>> isolateDerive(
|
||||||
|
|
||||||
final derivePathChange = constructDerivePath(
|
final derivePathChange = constructDerivePath(
|
||||||
networkWIF: _network.wif,
|
networkWIF: _network.wif,
|
||||||
chain: 0,
|
chain: 1,
|
||||||
index: i,
|
index: i,
|
||||||
);
|
);
|
||||||
currentNode = await Bip32Utils.getBip32NodeFromRoot(
|
currentNode = await Bip32Utils.getBip32NodeFromRoot(
|
||||||
|
|
|
@ -1228,6 +1228,9 @@ void main() {
|
||||||
await secureStore.write(
|
await secureStore.write(
|
||||||
key: "${testWalletId}buildMintTransaction_mnemonic",
|
key: "${testWalletId}buildMintTransaction_mnemonic",
|
||||||
value: BuildMintTxTestParams.mnemonic);
|
value: BuildMintTxTestParams.mnemonic);
|
||||||
|
await secureStore.write(
|
||||||
|
key: "${testWalletId}buildMintTransaction_mnemonicPassphrase",
|
||||||
|
value: "");
|
||||||
|
|
||||||
when(cachedClient.getTransaction(
|
when(cachedClient.getTransaction(
|
||||||
txHash: BuildMintTxTestParams.utxoInfo["txid"] as String,
|
txHash: BuildMintTxTestParams.utxoInfo["txid"] as String,
|
||||||
|
|
Loading…
Reference in a new issue