diff --git a/opstack/src/builder.rs b/opstack/src/builder.rs index 3c225a46..06f32b34 100644 --- a/opstack/src/builder.rs +++ b/opstack/src/builder.rs @@ -17,7 +17,7 @@ pub struct OpStackClientBuilder { consensus_rpc: Option, execution_rpc: Option, rpc_socket: Option, - verify_unsafe_singer: Option, + verify_unsafe_signer: Option, } impl OpStackClientBuilder { @@ -50,8 +50,8 @@ impl OpStackClientBuilder { self } - pub fn verify_unsafe_singer(mut self, value: bool) -> Self { - self.verify_unsafe_singer = Some(value); + pub fn verify_unsafe_signer(mut self, value: bool) -> Self { + self.verify_unsafe_signer = Some(value); self } @@ -78,7 +78,7 @@ impl OpStackClientBuilder { chain: NetworkConfig::from(network).chain, load_external_fallback: None, checkpoint: None, - verify_unsafe_signer: self.verify_unsafe_singer.unwrap_or_default(), + verify_unsafe_signer: self.verify_unsafe_signer.unwrap_or_default(), } };