From 59ff8222f85c640451ebcd95761e96899731d160 Mon Sep 17 00:00:00 2001 From: Andrew Gouin Date: Tue, 16 Jan 2024 16:58:57 -0700 Subject: [PATCH] add nonce to message state --- types/message_state.go | 1 + 1 file changed, 1 insertion(+) diff --git a/types/message_state.go b/types/message_state.go index f22f380..d28c0d3 100644 --- a/types/message_state.go +++ b/types/message_state.go @@ -131,6 +131,7 @@ func NobleLogToMessageState(tx Tx) ([]*MessageState, error) { Status: Created, SourceDomain: msg.SourceDomain, DestDomain: msg.DestinationDomain, + Nonce: msg.Nonce, SourceTxHash: tx.Hash, MsgSentBytes: rawMessageSentBytes, DestinationCaller: msg.DestinationCaller,