Skip to content

Commit

Permalink
disable the heartbeat send from the chain for now as hedgehog pulls t…
Browse files Browse the repository at this point in the history
…his data. There is some error parsing the data after doing a delegation that crashes the chain. Error unmarshalling delegation data: invalid character '\x01' looking for beginning of value
  • Loading branch information
dekm committed Mar 16, 2024
1 parent d9cd8bd commit 3d87967
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion x/gridnode/module/abci.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ import (

func BeginBlocker(goCtx context.Context, k keeper.Keeper) {
ctx := sdk.UnwrapSDKContext(goCtx)
k.StartHeartbeatTimer(ctx)
// disable heartbeat manager for now
//k.StartHeartbeatTimer(ctx)
// Get the current block time
currentTime := ctx.BlockTime()

Expand Down

0 comments on commit 3d87967

Please sign in to comment.