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
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -453,13 +453,13 @@ flate2 = "1.1"
ethereum_ssz = "0.10"

# Tempo
tempo-alloy = { git = "https://github.com/tempoxyz/tempo", rev = "e38624d2a22fcba4331144d00f5108db182df52d" }
tempo-contracts = { git = "https://github.com/tempoxyz/tempo", rev = "e38624d2a22fcba4331144d00f5108db182df52d" }
tempo-revm = { git = "https://github.com/tempoxyz/tempo", rev = "e38624d2a22fcba4331144d00f5108db182df52d" }
tempo-evm = { git = "https://github.com/tempoxyz/tempo", rev = "e38624d2a22fcba4331144d00f5108db182df52d" }
tempo-chainspec = { git = "https://github.com/tempoxyz/tempo", rev = "e38624d2a22fcba4331144d00f5108db182df52d" }
tempo-primitives = { git = "https://github.com/tempoxyz/tempo", rev = "e38624d2a22fcba4331144d00f5108db182df52d" }
tempo-precompiles = { git = "https://github.com/tempoxyz/tempo", rev = "e38624d2a22fcba4331144d00f5108db182df52d" }
tempo-alloy = { git = "https://github.com/tempoxyz/tempo", rev = "5ce86734274f55ca7d4a878a5d9a6a4727e40e5c" }
tempo-contracts = { git = "https://github.com/tempoxyz/tempo", rev = "5ce86734274f55ca7d4a878a5d9a6a4727e40e5c" }
tempo-revm = { git = "https://github.com/tempoxyz/tempo", rev = "5ce86734274f55ca7d4a878a5d9a6a4727e40e5c" }
tempo-evm = { git = "https://github.com/tempoxyz/tempo", rev = "5ce86734274f55ca7d4a878a5d9a6a4727e40e5c" }
tempo-chainspec = { git = "https://github.com/tempoxyz/tempo", rev = "5ce86734274f55ca7d4a878a5d9a6a4727e40e5c" }
tempo-primitives = { git = "https://github.com/tempoxyz/tempo", rev = "5ce86734274f55ca7d4a878a5d9a6a4727e40e5c" }
tempo-precompiles = { git = "https://github.com/tempoxyz/tempo", rev = "5ce86734274f55ca7d4a878a5d9a6a4727e40e5c" }

## Pinned dependencies. Enabled for the workspace in crates/test-utils.

Expand Down
2 changes: 1 addition & 1 deletion crates/anvil/src/eth/backend/tempo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ impl PrecompileStorageProvider for AnvilStorageProvider<'_> {
JournalCheckpoint { log_i: 0, journal_i: 0 }
}

fn checkpoint_commit(&mut self) {}
fn checkpoint_commit(&mut self, _checkpoint: JournalCheckpoint) {}

fn checkpoint_revert(&mut self, _checkpoint: JournalCheckpoint) {}
}
Expand Down
2 changes: 1 addition & 1 deletion crates/evm/core/src/tempo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ impl<'a> PrecompileStorageProvider for FoundryStorageProvider<'a> {
JournalCheckpoint { log_i: 0, journal_i: 0 }
}

fn checkpoint_commit(&mut self) {}
fn checkpoint_commit(&mut self, _checkpoint: JournalCheckpoint) {}

fn checkpoint_revert(&mut self, _checkpoint: JournalCheckpoint) {}
}
Expand Down
Loading