Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
ryardley committed Nov 3, 2024
1 parent b3b91b7 commit 66f9b6f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/ciphernode/evm/src/enclave_sol_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ impl EnclaveSolReader {
provider: &WithChainId<ReadonlyProvider, BoxTransport>,
contract_address: &str,
) -> Result<Addr<EvmEventReader<ReadonlyProvider>>> {
let addr = EvmEventReader::attach(bus, provider, extractor, contract_address,None).await?;
let addr = EvmEventReader::attach(bus, provider, extractor, contract_address, None).await?;
Ok(addr)
}
}
2 changes: 1 addition & 1 deletion packages/ciphernode/evm/src/event_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ where
/// A shutdown receiver to listen to for shutdown signals sent to the loop this is only used
/// internally. You should send the Shutdown signal to the reader directly or via the EventBus
shutdown_rx: Option<oneshot::Receiver<()>>,
/// The sender for the shutdown signal this is only used internally
/// The sender for the shutdown signal this is only used internally
shutdown_tx: Option<oneshot::Sender<()>>,
/// The deployment block of the contract
deployment_block: Option<u64>,
Expand Down
2 changes: 1 addition & 1 deletion packages/ciphernode/evm/tests/evm_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ fn test_event_extractor(
};
Some(EnclaveEvent::from(TestEvent {
msg: event.value,
entropy: event.count.try_into().unwrap(), // This prevents de-duplication in tests
entropy: event.count.try_into().unwrap(), // This prevents de-duplication in tests
}))
}
_ => None,
Expand Down

0 comments on commit 66f9b6f

Please sign in to comment.