fix: fromstr impl for miner variant (#13289)

This commit is contained in:
Matthias Seitz
2024-12-11 09:53:48 +01:00
committed by GitHub
parent b424ad36dc
commit d345ffc58c

View File

@ -320,6 +320,7 @@ impl FromStr for RethRpcModule {
"reth" => Self::Reth,
"ots" => Self::Ots,
"flashbots" => Self::Flashbots,
"miner" => Self::Miner,
_ => return Err(ParseError::VariantNotFound),
})
}