Skip to content

Commit

Permalink
Merge pull request Fairblock#96 from Fairblock/chore/remove-unnecessa…
Browse files Browse the repository at this point in the history
…ry-log

remove unnecessary log
  • Loading branch information
p0p3yee authored Jan 11, 2024
2 parents ce71ef7 + 8bccbd5 commit 60f3cd0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion x/keyshare/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,6 @@ func (am AppModule) BeginBlock(ctx sdk.Context, _ abci.RequestBeginBlock) {

// EndBlock contains the logic that is automatically triggered at the end of each block
func (am AppModule) EndBlock(ctx sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate {
am.keeper.Logger(ctx).Info(fmt.Sprintf("End Blocker of Height: %d", ctx.BlockHeight()))
validators := am.keeper.GetAllValidatorSet(ctx)
params := am.keeper.GetParams(ctx)

Expand Down
4 changes: 0 additions & 4 deletions x/pep/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -245,10 +245,6 @@ func (am AppModule) BeginBlock(ctx sdk.Context, _ abci.RequestBeginBlock) {
lastExecutedHeight = 0
}

allAggKey := am.keeper.GetAllAggregatedKeyShare(ctx)

am.keeper.Logger(ctx).Info(fmt.Sprintf("[PEP][AGGKEY] %v", allAggKey))

strHeight := am.keeper.GetLatestHeight(ctx)
height, err := strconv.ParseUint(strHeight, 10, 64)

Expand Down

0 comments on commit 60f3cd0

Please sign in to comment.