Skip to content

Commit 72c0082

Browse files
authored
chore: deps and release version (#209)
1 parent 3b8e6eb commit 72c0082

File tree

3 files changed

+44
-11
lines changed

3 files changed

+44
-11
lines changed

Cargo.lock

Lines changed: 42 additions & 8 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
@@ -1,6 +1,6 @@
11
[package]
22
name = "builder"
3-
version = "1.0.0-rc.0"
3+
version = "1.0.0-rc.1"
44
description = "signet builder example"
55

66
edition = "2024"

src/tasks/cache/bundle.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ impl BundlePoller {
4141
/// Creates a new BundlePoller from the provided builder config and with the specified poll interval in ms.
4242
pub fn new_with_poll_interval_ms(poll_interval_ms: u64) -> Self {
4343
let config = crate::config();
44-
let cache = signet_tx_cache::TxCache::new(config.tx_pool_url.clone());
45-
let tx_cache = BuilderTxCache::new(cache, config.oauth_token());
44+
let tx_cache = BuilderTxCache::new(config.tx_pool_url.clone(), config.oauth_token());
4645
Self { config, tx_cache, poll_interval_ms }
4746
}
4847

0 commit comments

Comments
 (0)