From 047fe73bc7367f792bf75c571abd6225de9d0dd9 Mon Sep 17 00:00:00 2001 From: Binarybaron Date: Fri, 11 Jul 2025 15:03:21 +0200 Subject: [PATCH] fix(swap): Compile error (context(...)) --- swap/src/bin/asb.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swap/src/bin/asb.rs b/swap/src/bin/asb.rs index 398b6b9a..7bf8d702 100644 --- a/swap/src/bin/asb.rs +++ b/swap/src/bin/asb.rs @@ -430,7 +430,7 @@ pub async fn main() -> Result<()> { let monero_wallet = init_monero_wallet(&config, env_config).await?; let main_wallet = monero_wallet.main_wallet().await; - let seed = main_wallet.seed().await.context("Failed to get wallet seed")?; + let seed = main_wallet.seed().await; let creation_height = main_wallet.creation_height().await; println!("Seed : {seed}");