Skip to content

Commit be10d7f

Browse files
fix: properly type wallet_manager variable in non-remote-wallet build
1 parent 8bfb8cc commit be10d7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
6969
let mut wallet_manager: Option<Arc<RemoteWalletManager>> = None;
7070

7171
#[cfg(not(feature = "remote-wallet"))]
72-
let mut wallet_manager = None;
72+
let mut wallet_manager: Option<()> = None;
7373

7474
let config = {
7575
let cli_config = if let Some(config_file) =

0 commit comments

Comments
 (0)