From 5b7aa15143e3bcb4679e7b2b41a587b13e2f4405 Mon Sep 17 00:00:00 2001 From: hexcow Date: Tue, 25 Feb 2025 15:29:09 +0300 Subject: [PATCH] chore: fix typos in variable and methods names --- opstack/src/builder.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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(), } };