From 89c8fec878840ccdfc96fc209bd133e854c96b2d Mon Sep 17 00:00:00 2001 From: huangyi Date: Tue, 18 Jun 2024 10:58:29 +0800 Subject: [PATCH] fix msg type --- x/cronos/types/messages.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x/cronos/types/messages.go b/x/cronos/types/messages.go index 4c5e2c1c70..e945689690 100644 --- a/x/cronos/types/messages.go +++ b/x/cronos/types/messages.go @@ -20,6 +20,7 @@ const ( TypeMsgUpdateParams = "UpdateParams" TypeMsgTurnBridge = "TurnBridge" TypeMsgUpdatePermissions = "UpdatePermissions" + TypeMsgStoreBlockList = "StoreBlockList" ) var ( @@ -376,5 +377,5 @@ func (msg MsgStoreBlockList) Route() string { // Type ... func (msg MsgStoreBlockList) Type() string { - return TypeMsgUpdatePermissions + return TypeMsgStoreBlockList }