Skip to content

Commit

Permalink
fix transaction response check on ethereum oracle
Browse files Browse the repository at this point in the history
Signed-off-by: p4u <[email protected]>
  • Loading branch information
p4u committed Dec 15, 2022
1 parent 10ed4d4 commit 06ffd3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethereum/ethevents/transactionhandler.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func (ev *EthereumEvents) transactionHandler() {
log.Errorf("cannot send transaction: %v (response: %v)", err, res)
continue
}
if err == nil {
if res == nil {
log.Errorf("no reply from vochain")
continue
}
Expand Down

0 comments on commit 06ffd3a

Please sign in to comment.