Add Goggles filter for nVersion=3

This commit is contained in:
Mononaut
2024-02-12 20:00:57 +00:00
parent 512f632475
commit 8713d33d1a
3 changed files with 6 additions and 3 deletions

View File

@@ -245,6 +245,8 @@ export class Common {
flags |= TransactionFlags.v1;
} else if (tx.version === 2) {
flags |= TransactionFlags.v2;
} else if (tx.version === 3) {
flags |= TransactionFlags.v3;
}
const reusedInputAddresses: { [address: string ]: number } = {};
const reusedOutputAddresses: { [address: string ]: number } = {};