Skip to content

Commit 86df676

Browse files
authored
Merge branch 'main' into propagate-errors
2 parents 13ad0a6 + 0f0c647 commit 86df676

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = ["OpenZeppelin"]
77
edition = "2024"
88
license = "AGPL-3.0-only"
99
repository = "https://github.com/OpenZeppelin/Event-Scanner"
10-
version = "0.1.0-alpha.2"
10+
version = "0.1.0-alpha.3"
1111

1212
[workspace.lints.clippy]
1313
pedantic = "warn"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Add `event-scanner` to your `Cargo.toml`:
5252

5353
```toml
5454
[dependencies]
55-
event-scanner = "0.1.0-alpha.2"
55+
event-scanner = "0.1.0-alpha.3"
5656
```
5757

5858
Create an event stream for the given event filters registered with the `EventScanner`:

tests/live_mode/reorg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ async fn reorg_rescans_events_with_ascending_blocks() -> anyhow::Result<()> {
172172
}
173173
};
174174

175-
_ = timeout(Duration::from_secs(2), event_counting).await;
175+
_ = timeout(Duration::from_secs(5), event_counting).await;
176176

177177
let final_blocks: Vec<_> = event_block_count.lock().await.clone();
178178
assert_eq!(final_blocks.len() as u64, initial_events + num_new_events);

0 commit comments

Comments
 (0)