From 4cb6dbeac2a6e65529eff2a86f9c0d6d1dbf645f Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 31 Jul 2020 19:58:22 -0400 Subject: [PATCH 1/2] changing log message --- chains/ethereum/writer_methods.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chains/ethereum/writer_methods.go b/chains/ethereum/writer_methods.go index d066ed7cf..01c77e098 100644 --- a/chains/ethereum/writer_methods.go +++ b/chains/ethereum/writer_methods.go @@ -204,7 +204,7 @@ func (w *writer) watchThenExecute(m msg.Message, data []byte, dataHash [32]byte, w.executeProposal(m, data, dataHash) return } else { - w.log.Trace("Ignoring finalization event", "src", sourceId, "nonce", depositNonce) + w.log.Trace("Did not find the matching finalization event, retrying...", "src", sourceId, "nonce", depositNonce) } } w.log.Trace("No finalization event found in current block", "block", latestBlock, "src", m.Source, "nonce", m.DepositNonce) From b1462354621a3362820f90d884e76ab2ac086d4a Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 4 Aug 2020 10:19:33 -0400 Subject: [PATCH 2/2] addressing feedback --- chains/ethereum/writer_methods.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chains/ethereum/writer_methods.go b/chains/ethereum/writer_methods.go index 01c77e098..96be4dc1e 100644 --- a/chains/ethereum/writer_methods.go +++ b/chains/ethereum/writer_methods.go @@ -204,7 +204,7 @@ func (w *writer) watchThenExecute(m msg.Message, data []byte, dataHash [32]byte, w.executeProposal(m, data, dataHash) return } else { - w.log.Trace("Did not find the matching finalization event, retrying...", "src", sourceId, "nonce", depositNonce) + w.log.Trace("Ignoring event", "src", sourceId, "nonce", depositNonce) } } w.log.Trace("No finalization event found in current block", "block", latestBlock, "src", m.Source, "nonce", m.DepositNonce)