We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fa9304 commit 04806a5Copy full SHA for 04806a5
hermes/src/store.rs
@@ -164,7 +164,7 @@ impl Store {
164
.enumerate()
165
.map(|(idx, message)| {
166
Ok(MessageState::new(
167
- message.clone(),
+ *message,
168
ProofSet {
169
wormhole_merkle_proof: wormhole_merkle_message_states_proofs
170
.get(idx)
hermes/src/store/types.rs
@@ -13,13 +13,11 @@ pub struct MessageIdentifier {
13
pub type_: MessageType,
14
}
15
16
-
17
#[derive(Clone, PartialEq, Debug)]
18
pub struct ProofSet {
19
pub wormhole_merkle_proof: WormholeMerkleMessageProof,
20
21
22
23
pub type Slot = u64;
24
pub type UnixTimestamp = i64;
25
0 commit comments