Skip to content

Commit ad037a0

Browse files
author
Adrian Nagy
committed
chore: fix lint
1 parent 46a4fc4 commit ad037a0

File tree

1 file changed

+4
-2
lines changed
  • node/common/src/service/archive

1 file changed

+4
-2
lines changed

node/common/src/service/archive/mod.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,18 @@ use mina_p2p_messages::v2::PrecomputedBlock;
88
use openmina_core::NetworkConfig;
99
use reqwest::Url;
1010
use std::net::SocketAddr;
11-
use std::{fs::File, path::Path};
1211

1312
use super::NodeService;
1413

14+
#[cfg(not(target_arch = "wasm32"))]
1515
pub mod aws;
16-
pub mod config;
16+
#[cfg(not(target_arch = "wasm32"))]
1717
pub mod gcp;
1818
#[cfg(not(target_arch = "wasm32"))]
1919
pub mod rpc;
2020

21+
pub mod config;
22+
2123
use config::ArchiveStorageOptions;
2224

2325
const ARCHIVE_SEND_RETRIES: u8 = 5;

0 commit comments

Comments
 (0)