We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a3e619 commit 4ef4951Copy full SHA for 4ef4951
consensus/bor/statefull/processor.go
@@ -100,6 +100,11 @@ func ApplyMessage(
100
log.Error("message execution failed on contract", "msgData", msg.Data)
101
}
102
103
+ // If there's error committing span, log it here. It won't be reported before because the return value is empty.
104
+ if bytes.Equal(msg.To().Bytes(), validatorContract.Bytes()) && err != nil {
105
+ log.Error("message execution failed on contract", "err", err)
106
+ }
107
+
108
// Update the state with pending changes
109
if err != nil {
110
state.Finalise(true)
0 commit comments