From 8e141f73f79dfe9b50f6fffc5da3b6b71ec7804b Mon Sep 17 00:00:00 2001 From: zhiqiangxu <652732310@qq.com> Date: Thu, 25 Jan 2024 09:57:25 +0800 Subject: [PATCH] merge master --- src/wallet/inscribe/batch_file.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wallet/inscribe/batch_file.rs b/src/wallet/inscribe/batch_file.rs index 1f08dafc5c..b1d74e616d 100644 --- a/src/wallet/inscribe/batch_file.rs +++ b/src/wallet/inscribe/batch_file.rs @@ -35,10 +35,10 @@ impl Batchfile { .inscriptions .iter() .any(|entry| entry.destination.is_some()) - && self.mode == Mode::SharedOutput + && (self.mode == Mode::SharedOutput || self.mode == Mode::SameSat) { return Err(anyhow!( - "individual inscription destinations cannot be set in shared-output mode" + "individual inscription destinations cannot be set in shared-output or same-sat mode" )); }