contract: move Event into scope for rustdoc Fixes #1676 (#1787)

This commit is contained in:
MouseLess.eth 2022-11-08 01:44:41 +02:00 committed by GitHub
parent 64b7f1ef1a
commit dcc8df9ae5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ mod factory;
pub use factory::{ContractDeployer, ContractFactory}; pub use factory::{ContractDeployer, ContractFactory};
mod event; mod event;
pub use event::EthEvent; pub use event::{EthEvent, Event};
mod log; mod log;
pub use log::{decode_logs, EthLogDecode, LogMeta}; pub use log::{decode_logs, EthLogDecode, LogMeta};