From 47d54edf8a984bf1491c62427a76e562f03f481c Mon Sep 17 00:00:00 2001
From: Thomas Marchand <thomas.marchand@tuta.io>
Date: Tue, 17 Sep 2024 11:16:57 +0100
Subject: [PATCH] feat: replace ar_discount_blacklist_a by
 ar_discount_blacklist_b

---
 src/naming/main.cairo | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/naming/main.cairo b/src/naming/main.cairo
index b70507f..e0ba433 100644
--- a/src/naming/main.cairo
+++ b/src/naming/main.cairo
@@ -136,7 +136,7 @@ mod Naming {
         _server_pub_key: felt252,
         _whitelisted_renewal_contracts: LegacyMap<ContractAddress, bool>,
         // a for alpha, as we will probably do this campaign again in the future
-        _ar_discount_blacklist_a: LegacyMap<felt252, bool>,
+        _ar_discount_blacklist_b: LegacyMap<felt252, bool>,
         _ar_discount_renew_enabled: bool,
         #[substorage(v0)]
         storage_read: storage_read_component::Storage,
@@ -521,7 +521,7 @@ mod Naming {
             assert(self._ar_discount_renew_enabled.read(), 'Discount disabled');
 
             // We check that domain didn't already claim the discount
-            assert(!self._ar_discount_blacklist_a.read(domain), 'You can\'t claim this twice');
+            assert(!self._ar_discount_blacklist_b.read(domain), 'You can\'t claim this twice');
 
             // We check it's a valid AR contract, then we check that AR is enabled,
             // we don't validate the pricing because it could change
@@ -536,7 +536,7 @@ mod Naming {
             assert(erc20_allowance != 0, 'Invalid ERC20 allowance');
 
             // We then blacklist that domain for this discount
-            self._ar_discount_blacklist_a.write(domain, true);
+            self._ar_discount_blacklist_b.write(domain, true);
 
             // We can finally renew the domain with no SaleMetadata event since it's free
             let now = get_block_timestamp();