From 41f7500a048272148537becb2efd52b4536564bf Mon Sep 17 00:00:00 2001 From: joeuhren Date: Sat, 20 Mar 2021 15:02:42 -0600 Subject: [PATCH] Always omit special addresses from the richlist --- lib/database.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/database.js b/lib/database.js index 956bdbe..037e6d2 100644 --- a/lib/database.js +++ b/lib/database.js @@ -388,8 +388,10 @@ module.exports = { // create the burn address array so that we omit burned coins from the rich list var burn_addresses = settings.richlist_page.burned_coins.addresses; - // always omit the private address from the richlist + // always omit special addresses used by the explorer from the richlist (coinbase, hidden address and unknown address) + burn_addresses.push('coinbase'); burn_addresses.push('hidden_address'); + burn_addresses.push('unknown_address'); if (list == 'received') { // update 'received' richlist data