mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-18 02:07:43 +00:00
pass in getTransaction in case its needed
This commit is contained in:
parent
9bda961a3b
commit
4142b437c7
2 changed files with 6 additions and 1 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit c63f44c2e48f6c477c4abc148fd172e8759595d6
|
Subproject commit 440ec6a8189ccbcf4b9570d83c8fe1cd9910bdbe
|
|
@ -247,6 +247,11 @@ mixin FusionWalletInterface {
|
||||||
getSocksProxyAddress: getSocksProxyAddress,
|
getSocksProxyAddress: getSocksProxyAddress,
|
||||||
getChainHeight: _getChainHeight,
|
getChainHeight: _getChainHeight,
|
||||||
updateStatusCallback: updateStatus,
|
updateStatusCallback: updateStatus,
|
||||||
|
getTransactionJson: (String txid) async =>
|
||||||
|
await _getWalletCachedElectrumX().getTransaction(
|
||||||
|
coin: _coin,
|
||||||
|
txHash: txid,
|
||||||
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
// Add stack UTXOs.
|
// Add stack UTXOs.
|
||||||
|
|
Loading…
Reference in a new issue