From b07e4154371da9c7f78528da9152bf999b4e0822 Mon Sep 17 00:00:00 2001 From: chenqin <490358423@qq.com> Date: Wed, 1 Apr 2026 14:40:13 +0800 Subject: [PATCH] fix(doc): vague verification description --- injective-chain/modules/exchange/spec/04_state_transitions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/injective-chain/modules/exchange/spec/04_state_transitions.md b/injective-chain/modules/exchange/spec/04_state_transitions.md index fc377865..63542fd1 100644 --- a/injective-chain/modules/exchange/spec/04_state_transitions.md +++ b/injective-chain/modules/exchange/spec/04_state_transitions.md @@ -394,7 +394,7 @@ The update of spot market param is handled by `SpotMarketParamUpdateProposal` wh - `ValidateBasic` for proposal - Get spot market by `p.MarketId` and if not exist, revert - Reset the params for `MakerFeeRate`, `TakerFeeRate`, `RelayerFeeShareRate`, `MinPriceTickSize`, `MinQuantityTickSize` and `Status` if not empty, if empty keep as it is. -- Validate `MakerFeeRate` is bigger than `TakerFeeRate`. +- Validate that `MakerFeeRate` should not be bigger than `TakerFeeRate`. ## Derivative market param update proposal @@ -405,7 +405,7 @@ Derivative market param update is handled by `DerivativeMarketParamUpdateProposa - `ValidateBasic` for proposal - Validate Derivative market exists by `p.MarketId` and if not exist, revert - Reset the params for `InitialMarginRatio`, `MaintenanceMarginRatio`, `MakerFeeRate`, `TakerFeeRate`, `RelayerFeeShareRate`, `MinPriceTickSize`, `MinQuantityTickSize` and `Status` if not empty, if empty keep as it is. -- Validate `MakerFeeRate` is bigger than `TakerFeeRate`. +- Validate that `MakerFeeRate` should not be bigger than `TakerFeeRate`. - Validate `InitialMarginRatio` is bigger than `MaintenanceMarginRatio`. - Schedule Derivative market param update and update finalization on Endblocker - **Note:** this is due to the orders update for derivative market param update - should make sure nothing panics here.