Compare commits

...

1 Commits

Author SHA1 Message Date
Eitan Seri-Levi
a36a64322d Backport of #9514 to release-v8.2.1
- Remove deprecated geth flag
- Remove duplicate entries for crate `syn`
2026-07-02 19:57:24 +10:00
2 changed files with 1 additions and 2 deletions

2
Cargo.lock generated
View File

@@ -2475,7 +2475,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ab67060fc6b8ef687992d439ca0fa36e7ed17e9a0b16b25b601e8757df720de" checksum = "7ab67060fc6b8ef687992d439ca0fa36e7ed17e9a0b16b25b601e8757df720de"
dependencies = [ dependencies = [
"data-encoding", "data-encoding",
"syn 1.0.109", "syn 2.0.117",
] ]
[[package]] [[package]]

View File

@@ -108,7 +108,6 @@ impl GenericExecutionEngine for GethEngine {
.arg(http_auth_port.to_string()) .arg(http_auth_port.to_string())
.arg("--port") .arg("--port")
.arg(network_port.to_string()) .arg(network_port.to_string())
.arg("--allow-insecure-unlock")
.arg("--authrpc.jwtsecret") .arg("--authrpc.jwtsecret")
.arg(jwt_secret_path.as_path().to_str().unwrap()) .arg(jwt_secret_path.as_path().to_str().unwrap())
// This flag is required to help Geth perform reliably when feeding it blocks // This flag is required to help Geth perform reliably when feeding it blocks