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 46a4fc4 commit ad037a0Copy full SHA for ad037a0
node/common/src/service/archive/mod.rs
@@ -8,16 +8,18 @@ use mina_p2p_messages::v2::PrecomputedBlock;
8
use openmina_core::NetworkConfig;
9
use reqwest::Url;
10
use std::net::SocketAddr;
11
-use std::{fs::File, path::Path};
12
13
use super::NodeService;
14
+#[cfg(not(target_arch = "wasm32"))]
15
pub mod aws;
16
-pub mod config;
17
pub mod gcp;
18
#[cfg(not(target_arch = "wasm32"))]
19
pub mod rpc;
20
21
+pub mod config;
22
+
23
use config::ArchiveStorageOptions;
24
25
const ARCHIVE_SEND_RETRIES: u8 = 5;
0 commit comments