We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64f6b20 commit 13d1e2bCopy full SHA for 13d1e2b
projects/helper/bitcoin-book/fetchers.js
@@ -115,6 +115,7 @@ module.exports = {
115
lombard: async () => {
116
const API_URL = 'https://mainnet.prod.lombard.finance/api/v1/addresses'
117
const BATCH_SIZE = 1000
118
+ const blacklisted = new Set(['bc1phz9f27wshtset37f96xl266w9zaq0wdmls749qad2rj3zz4zc8psmgts3w'])
119
120
return getConfig('lombard', undefined, {
121
fetcher: async () => {
@@ -135,7 +136,7 @@ module.exports = {
135
136
batchNumber++;
137
}
138
- return allAddresses;
139
+ return allAddresses.filter(i => !blacklisted.has('bc1phz9f27wshtset37f96xl266w9zaq0wdmls749qad2rj3zz4zc8psmgts3w'))
140
141
})
142
},
0 commit comments