From a89a9bcaede7ff7bf83711f56c5e8d90106a6f49 Mon Sep 17 00:00:00 2001 From: ardocrat Date: Wed, 25 Jun 2025 11:50:49 +0300 Subject: [PATCH] fix: message opening --- src/wallet/wallet.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wallet/wallet.rs b/src/wallet/wallet.rs index 5c5e52a0..e49d24da 100644 --- a/src/wallet/wallet.rs +++ b/src/wallet/wallet.rs @@ -704,9 +704,9 @@ impl Wallet { s.state == SlateState::Standard2) { let mut slate = s.clone(); slate.state = if s.state == SlateState::Standard2 { - SlateState::Standard1 + SlateState::Standard3 } else { - SlateState::Invoice1 + SlateState::Invoice3 }; exists = w.slatepack_exists(&slate); }