Merge pull request #5209 from mempool/mononaut/fix-type-error

Fix coinbase address type error
This commit is contained in:
softsimon 2024-06-25 11:25:29 +09:00 committed by GitHub
commit f98bb675e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -724,7 +724,7 @@ class Blocks {
}
const coinbaseTx = await bitcoinApi.$getCoinbaseTx(hash);
const addresses = new Set<string>(coinbaseTx.vout.map(v => v.scriptpubkey_address).filter(a => a));
const addresses = new Set<string>(coinbaseTx.vout.map(v => v.scriptpubkey_address).filter(a => a) as string[]);
await blocksRepository.$saveCoinbaseAddresses(hash, [...addresses]);
// Logging