fix: Don't have a DEFAULT_CONFIG_PATH in bin

This is unnecessary since we already have the executor address loaded at build time

--- don't change below this line ---
ENG-4088 Took 8 minutes


Took 7 seconds
This commit is contained in:
Diana Carvalho
2025-02-07 12:24:26 +00:00
parent cad9f394cd
commit d7f20aa74f
6 changed files with 11 additions and 14 deletions

View File

@@ -20,7 +20,7 @@ pub trait StrategyEncoder {
pub trait StrategyEncoderRegistry {
fn new(
chain: Chain,
executors_file_path: Option<&str>,
executors_file_path: Option<String>,
signer_pk: Option<String>,
) -> Result<Self, EncodingError>
where