Merge pull request #815 from cypherstack/fix-particl-sync

Fix particl sync
This commit is contained in:
Diego Salazar 2024-03-18 11:13:16 -06:00 committed by GitHub
commit 2996b98230
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;