From cc3db7d32311bb6d915ad7e5a5eb762291067cf0 Mon Sep 17 00:00:00 2001 From: Oleksandr Pravdyvyi Date: Fri, 31 Jan 2025 10:02:09 +0200 Subject: [PATCH] fix: format fix --- sequencer_core/src/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sequencer_core/src/lib.rs b/sequencer_core/src/lib.rs index 6c87d1f..d0163f1 100644 --- a/sequencer_core/src/lib.rs +++ b/sequencer_core/src/lib.rs @@ -62,7 +62,10 @@ impl SequencerCore { pub fn get_tree_roots(&self) -> [[u8; 32]; 3] { [ self.store.nullifier_store.curr_root.unwrap_or([0; 32]), - self.store.utxo_commitments_store.get_root().unwrap_or([0; 32]), + self.store + .utxo_commitments_store + .get_root() + .unwrap_or([0; 32]), self.store.pub_tx_store.get_root().unwrap_or([0; 32]), ] }