From be4abc1c89679581c373c5d66c896239f26e1f33 Mon Sep 17 00:00:00 2001 From: kevin Date: Thu, 1 Aug 2024 00:00:38 +0800 Subject: [PATCH] remove role check --- contract/Forest/ForestContract.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/contract/Forest/ForestContract.cs b/contract/Forest/ForestContract.cs index 090851e..c6e9243 100755 --- a/contract/Forest/ForestContract.cs +++ b/contract/Forest/ForestContract.cs @@ -260,7 +260,6 @@ public override Empty SetMaxBatchCancelListCount(Int32Value input) public override Empty SetCollectionListTotalCount(SetCollectionListTotalCountInput input) { - AssertSenderIsAdmin(); Assert(input != null && input.Address != null && !string.IsNullOrEmpty(input.Symbol) && input.Count >=0, "Invalid input."); State.ListedNFTTotalAmountMap[input.Symbol][input.Address] = input.Count.ToString();