Skip to content

Commit

Permalink
remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
gusin13 committed Sep 13, 2024
1 parent a1dc0fb commit 6ac0073
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
7 changes: 0 additions & 7 deletions x/finality/keeper/msg_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,6 @@ func (ms msgServer) AddFinalitySig(goCtx context.Context, req *types.MsgAddFinal
return nil, err
}

ms.Logger(ctx).Info("Retrieved public randomness commitment",
"fpBtcPk", req.FpBtcPk.MarshalHex(),
"blockHeight", req.BlockHeight,
"startHeight", prCommit.StartHeight,
"numPubRand", prCommit.NumPubRand,
"commitment", fmt.Sprintf("%x", prCommit.Commitment))

// verify the finality signature message w.r.t. the public randomness commitment
// including the public randomness inclusion proof and the finality signature
if err := types.VerifyFinalitySig(req, prCommit); err != nil {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,6 @@ func (k Keeper) BroadcastBTCStakingConsumerEvents(
continue
}

// Log the IBC packet
k.Logger(sdkCtx).Info("BroadcastBTCStakingConsumerEvents: Preparing ZoneConcierge packet",
"consumerID", consumerID,
"packetType", "BtcStaking",
"packetContent", fmt.Sprintf("%+v", ibcPacket))

// Prepare the packet for ZoneConcierge.
zcPacket := &types.ZoneconciergePacketData{
Packet: &types.ZoneconciergePacketData_BtcStaking{
Expand Down

0 comments on commit 6ac0073

Please sign in to comment.