Skip to content

Commit

Permalink
Update consensus.go to correctly use rlp unmarsahalling and handle le…
Browse files Browse the repository at this point in the history
…0c13cd8 …gacy tx type
  • Loading branch information
DarkLord017 authored and ABD-AZE committed Nov 4, 2024
1 parent 60b7878 commit e75a574
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion consensus/consensus.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ package consensus
// uses rpc
// uses config for networks
// uses common for datatypes

import (
"bytes"
"encoding/hex"
Expand Down Expand Up @@ -590,6 +589,7 @@ func (in *Inner) sync(checkpoint [32]byte) error {
// Apply updates
for _, update := range updates {
if err := in.verify_update(&update); err != nil {

errorChan <- err
return
}
Expand Down

0 comments on commit e75a574

Please sign in to comment.