From ee1ada94441e309d1431e0f6a51640f468eaca33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Duarte?= Date: Wed, 22 Jan 2025 10:13:10 +0000 Subject: [PATCH] fix: remove unused getter --- pallets/market/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/pallets/market/src/lib.rs b/pallets/market/src/lib.rs index 68675d89f..21c0dac44 100644 --- a/pallets/market/src/lib.rs +++ b/pallets/market/src/lib.rs @@ -305,7 +305,6 @@ pub mod pallet { /// Invariant must be held at all times: /// `account(MarketPallet).balance == all_accounts.map(|balance| balance[account]].locked + balance[account].free).sum()` #[pallet::storage] - #[pallet::getter(fn balance_table)] // NOTE(@jmg-duarte,21/1/25): maybe this could be gated? pub type BalanceTable = StorageMap<_, _, T::AccountId, BalanceEntry>, ValueQuery>;