Slight documentation tweaks

This commit is contained in:
Luke Parker
2024-04-24 03:55:23 -04:00
parent d1474e9188
commit d57fef8999
4 changed files with 10 additions and 5 deletions

View File

@@ -100,6 +100,7 @@ impl Deployer {
let to_block = BlockNumberOrTag::Latest;
// Find the first log using this init code (where the init code is binding to the key)
// TODO: Make an abstraction for event filtering (de-duplicating common code)
let filter =
Filter::new().from_block(0).to_block(to_block).address(Address::from(Self::address()));
let filter = filter.event_signature(abi::Deployment::SIGNATURE_HASH);