From f2f5d6ec415823a5da4262098b713bdaa6d23ba4 Mon Sep 17 00:00:00 2001 From: Dann Wee Date: Sun, 13 Apr 2025 18:47:51 +0800 Subject: [PATCH] fix: update merchant UEN in removeMerchant script and mark subproject commits as dirty --- script/actions/removeMerchant.s.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/actions/removeMerchant.s.sol b/script/actions/removeMerchant.s.sol index 1564487..ee49b56 100644 --- a/script/actions/removeMerchant.s.sol +++ b/script/actions/removeMerchant.s.sol @@ -18,7 +18,7 @@ contract RemoveMerchant is Script { vm.startBroadcast(deployerPrivateKey); // Remove merchant via UEN (Check Registry to get UEN) - string memory UEN = "201715518C"; + string memory UEN = "201709931R"; registry.deleteMerchant(UEN); console.log("Merchant removed successfully", UEN);