Skip to content

Commit 9d992b3

Browse files
committed
fix: fmt
1 parent e999d41 commit 9d992b3

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

anchor-evm/src/evm_transaction_manager.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,8 @@ impl EvmTransactionManager {
284284

285285
// Construct tx_input: function selector (0x97ad09eb) + 32-byte hash
286286
let root_hash = Self::cid_to_bytes32(&root_cid)?;
287-
let tx_input = format!("0x97ad09eb{}", hex::encode(root_hash.as_slice()));
287+
let tx_input =
288+
format!("0x97ad09eb{}", hex::encode(root_hash.as_slice()));
288289

289290
return Ok(AnchorResult {
290291
tx_hash,

anchor-service/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,6 @@ mod transaction_manager;
1212
pub use anchor::{AnchorRequest, MerkleNode, MerkleNodes, TimeEventBatch, TimeEventInsertable};
1313
pub use anchor_batch::{AnchorService, Store};
1414
pub use cas_mock::{MockAnchorEventService, MockCas};
15-
pub use transaction_manager::{ChainInclusionData, DetachedTimeEvent, RootTimeEvent, TransactionManager};
15+
pub use transaction_manager::{
16+
ChainInclusionData, DetachedTimeEvent, RootTimeEvent, TransactionManager,
17+
};

event-svc/src/event/validator/event.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,6 @@ impl EventValidator {
275275
}
276276
}
277277
}
278-
279278
}
280279

281280
#[cfg(test)]

0 commit comments

Comments
 (0)