Skip to content

Commit

Permalink
removed dereference print
Browse files Browse the repository at this point in the history
  • Loading branch information
avendauz committed Aug 12, 2021
1 parent 78153de commit cc1a1bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/nft/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,11 @@ func (am AppModule) EndBlock(ctx sdk.Context, _ abci.RequestEndBlock) []abci.Val
am.keeper.Logger(ctx).Error("Error creating btClient", "btClient", err)
}

fmt.Println("Bt client before setting", *am.keeper.GetBtClient(), am.keeper.GetBtClient())
fmt.Println("Bt client before setting", am.keeper.GetBtClient())

am.keeper.SetBtClient(btClient)

fmt.Println("Bt client after setting", *am.keeper.GetBtClient(), am.keeper.GetBtClient())
fmt.Println("Bt client after setting", am.keeper.GetBtClient())


fmt.Println("Doing broadcast register peer")
Expand Down

0 comments on commit cc1a1bb

Please sign in to comment.