From e75a57490b1d2476dda93453ca8d017c2c5754c2 Mon Sep 17 00:00:00 2001 From: Sambhav Jain <136801346+DarkLord017@users.noreply.github.com> Date: Mon, 4 Nov 2024 22:01:24 +0530 Subject: [PATCH] =?UTF-8?q?Update=20consensus.go=20to=20correctly=20use=20?= =?UTF-8?q?rlp=20unmarsahalling=20and=20handle=20le=E2=80=A6=20=200c13cd8?= =?UTF-8?q?=20=E2=80=A6gacy=20tx=20type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- consensus/consensus.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/consensus.go b/consensus/consensus.go index 5cdbca5..5b3c52b 100644 --- a/consensus/consensus.go +++ b/consensus/consensus.go @@ -4,7 +4,6 @@ package consensus // uses rpc // uses config for networks // uses common for datatypes - import ( "bytes" "encoding/hex" @@ -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 }