Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
rian committed Aug 13, 2024
1 parent 8d5cc2f commit e256f1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sync/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ func (s *Synchronizer) verifierTask(ctx context.Context, block *core.Block, stat
s.log.Infow("Stored Block", "number", block.Number, "hash",
block.Hash.ShortString(), "root", block.GlobalStateRoot.ShortString())
if s.plugin != nil {
err := (*s.plugin).NewBlock(block, stateUpdate, newClasses)
err := (*s.plugin).NewBlock(block, stateUpdate, nil) // Todo: revert to newClasses
if err != nil {
s.log.Errorw("Plugin NewBlock failure:", err)
}
Expand Down

0 comments on commit e256f1e

Please sign in to comment.