-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: log entry sync * fix: reorg * test: shard * chore: storage node version
- Loading branch information
1 parent
892efd4
commit e7c7379
Showing
21 changed files
with
657 additions
and
430 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
extern crate core; | ||
|
||
pub(crate) mod rpc_proxy; | ||
mod sync_manager; | ||
|
||
pub use rpc_proxy::ContractAddress; | ||
use ethers::prelude::H160; | ||
pub use sync_manager::{ | ||
config::{CacheConfig, LogSyncConfig}, | ||
LogSyncEvent, LogSyncManager, | ||
}; | ||
|
||
pub type ContractAddress = H160; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.