Merge pull request #4685 from mempool/mononaut/v3-filter

Add Goggles filter for nVersion=3
This commit is contained in:
softsimon
2024-02-27 15:44:13 +07:00
committed by GitHub
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 } = {};