Skip to content

Commit efc2c0a

Browse files
author
vlad
committed
build fix (4)
1 parent 7422b9b commit efc2c0a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

x/compute/internal/keeper/msg_dispatcher.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,8 @@ func (d MessageDispatcher) DispatchSubmessages(ctx sdk.Context, contractAddr sdk
246246
} else if msg.Msg.Stargate != nil {
247247
msgType = "stargate"
248248
}
249-
ctx.Logger().Debug(fmt.Sprintf("[DispatchSubmessages] height=%d msg[%d] id=%s type=%s replyOn=%s gasLimit=%v detail=%s gasBefore=%d",
250-
ctx.BlockHeight(), i, string(msg.ID), msgType, msg.ReplyOn, msg.GasLimit, msgDetail, ctx.GasMeter().GasConsumed()))
249+
ctx.Logger().Debug(fmt.Sprintf("[DispatchSubmessages] height=%d msg[%d] id=%d type=%s replyOn=%s gasLimit=%v detail=%s gasBefore=%d",
250+
ctx.BlockHeight(), i, msg.ID, msgType, msg.ReplyOn, msg.GasLimit, msgDetail, ctx.GasMeter().GasConsumed()))
251251

252252
if d.keeper.GetLastMsgMarkerContainer().GetMarker() {
253253
return nil, sdkerrors.ErrLastTx.Wrap("Cannot send messages or submessages after last tx marker was set")

0 commit comments

Comments
 (0)