From 49df2cf71fbb4a2ba78d48e5a9045ea678b6bec2 Mon Sep 17 00:00:00 2001 From: pxgamer Date: Fri, 14 Sep 2018 15:49:10 +0100 Subject: [PATCH] Add Blacklist check for addresses --- include/transaction.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/transaction.inc.php b/include/transaction.inc.php index f718de4..164c410 100755 --- a/include/transaction.inc.php +++ b/include/transaction.inc.php @@ -227,7 +227,7 @@ class Transaction } if ($_config['use_official_blacklist']!==false) { - if (Blacklist::checkPublicKey($x['public_key'])) { + if (Blacklist::checkPublicKey($x['public_key']) || Blacklist::checkAddress($x['src'])) { return true; } }