From ab94dd9d38505218df5e791bf22e31f363efd717 Mon Sep 17 00:00:00 2001 From: Roy Li Date: Wed, 27 Mar 2024 14:53:47 -0400 Subject: [PATCH] what --- protocol/app/ante.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protocol/app/ante.go b/protocol/app/ante.go index d34f604d15..ed2ff7aebd 100644 --- a/protocol/app/ante.go +++ b/protocol/app/ante.go @@ -256,12 +256,12 @@ func (h *lockingAnteHandler) clobAnteHandle(ctx sdk.Context, tx sdk.Tx, simulate switch msg := msgs[0].(type) { case *types.MsgCancelOrder: orderId = msg.OrderId - if orderId.ClientId%23 == 0 { + if orderId.ClientId%97 == 0 { ctx.Logger().Error("roycloblog", "order_id", orderIdStr(orderId, "cancel"), "block_height", ctx.BlockHeight()) } case *types.MsgPlaceOrder: orderId = msg.Order.OrderId - if orderId.ClientId%23 == 0 { + if orderId.ClientId%97 == 0 { ctx.Logger().Error("roycloblog", "order_id", orderIdStr(orderId, "place"), "block_height", ctx.BlockHeight()) } }