mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-02-02 03:06:29 +00:00
Merge pull request #815 from cypherstack/fix-particl-sync
Fix particl sync
This commit is contained in:
commit
2996b98230
1 changed files with 2 additions and 2 deletions
|
@ -193,8 +193,8 @@ class ParticlWallet extends Bip39HDWallet
|
|||
OutpointV2? outpoint;
|
||||
|
||||
final coinbase = map["coinbase"] as String?;
|
||||
|
||||
if (coinbase == null) {
|
||||
final txType = map['type'] as String?;
|
||||
if (coinbase == null && txType == null) {
|
||||
// Not a coinbase (ie a typical input).
|
||||
final txid = map["txid"] as String;
|
||||
final vout = map["vout"] as int;
|
||||
|
|
Loading…
Reference in a new issue