Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 15 additions & 35 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -250,4 +250,3 @@ ethereum_ssz_derive = "0.9.0"

# base
concurrent-queue = "2.5.0"
tips-core = { git = "https://github.com/base/tips", rev = "c08eaa4fe10c26de8911609b41ddab4918698325", default-features = false }
2 changes: 1 addition & 1 deletion crates/builder/op-rbuilder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ unused_async = "warn"
[dependencies]
p2p = { path = "../p2p" }

tips-core.workspace = true
base-bundles.workspace = true

reth.workspace = true
reth-optimism-node.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/builder/op-rbuilder/src/tests/backrun.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use alloy_eips::eip2718::Encodable2718;
use alloy_primitives::{TxHash, U256};
use alloy_provider::Provider;
use macros::rb_test;
use tips_core::{AcceptedBundle, MeterBundleResponse};
use base_bundles::{AcceptedBundle, MeterBundleResponse};
use uuid::Uuid;

/// Tests that backrun bundles are all-or-nothing:
Expand Down
2 changes: 1 addition & 1 deletion crates/builder/op-rbuilder/src/tx_data_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use std::{
},
time::Instant,
};
use tips_core::{AcceptedBundle, MeterBundleResponse};
use base_bundles::{AcceptedBundle, MeterBundleResponse};
use tracing::{debug, info, warn};
use uuid::Uuid;

Expand Down