We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c0845c commit 9dc0d56Copy full SHA for 9dc0d56
crates/sdk/src/verification_layer/mod.rs
@@ -236,7 +236,7 @@ pub async fn submit_multiple(
236
wallet: Wallet<SigningKey>,
237
nonce: U256,
238
) -> Vec<Result<AlignedVerificationData, errors::SubmitError>> {
239
- let (ws_stream, _) = match connect_async(network.clone().get_batcher_url()).await {
+ let (ws_stream, _) = match connect_async(network.get_batcher_url()).await {
240
Ok((ws_stream, response)) => (ws_stream, response),
241
Err(e) => return vec![Err(errors::SubmitError::WebSocketConnectionError(e))],
242
};
0 commit comments