diff --git a/beacon_node/execution_layer/src/lib.rs b/beacon_node/execution_layer/src/lib.rs index c962e58ae5..82baec4b09 100644 --- a/beacon_node/execution_layer/src/lib.rs +++ b/beacon_node/execution_layer/src/lib.rs @@ -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()))