mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
Strip newline from jwt secrets (#3132)
## Issue Addressed Resolves #3128 ## Proposed Changes Strip trailing newlines from jwt secret files.
This commit is contained in:
@@ -187,7 +187,7 @@ impl ExecutionLayer {
|
||||
})
|
||||
.and_then(|ref s| {
|
||||
let secret = JwtKey::from_slice(
|
||||
&hex::decode(strip_prefix(s))
|
||||
&hex::decode(strip_prefix(s.trim_end()))
|
||||
.map_err(|e| format!("Invalid hex string: {:?}", e))?,
|
||||
)?;
|
||||
Ok((secret, p.to_path_buf()))
|
||||
|
||||
Reference in New Issue
Block a user