Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: paradigmxyz/reth
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.1.3
Choose a base ref
...
head repository: paradigmxyz/reth
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.1.4
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Dec 11, 2024

  1. Copy the full SHA
    3ea2522 View commit details
  2. chore: bump version 1.1.4 (#13291)

    mattsse committed Dec 11, 2024
    Copy the full SHA
    15fac08 View commit details
Showing with 124 additions and 123 deletions.
  1. +122 −122 Cargo.lock
  2. +1 −1 Cargo.toml
  3. +1 −0 crates/rpc/rpc-server-types/src/module.rs
244 changes: 122 additions & 122 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "1.1.3"
version = "1.1.4"
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
1 change: 1 addition & 0 deletions crates/rpc/rpc-server-types/src/module.rs
Original file line number Diff line number Diff line change
@@ -320,6 +320,7 @@ impl FromStr for RethRpcModule {
"reth" => Self::Reth,
"ots" => Self::Ots,
"flashbots" => Self::Flashbots,
"miner" => Self::Miner,
_ => return Err(ParseError::VariantNotFound),
})
}