Skip to content

Commit 1de3fa4

Browse files
Merge #247
247: Calculate max_giveable based on spending script size r=da-kami a=thomaseizinger Co-authored-by: Thomas Eizinger <[email protected]>
2 parents 108bc4c + 9f0b1c5 commit 1de3fa4

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

swap/src/bin/swap_cli.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use std::{path::Path, sync::Arc, time::Duration};
1919
use structopt::StructOpt;
2020
use swap::{
2121
bitcoin,
22-
bitcoin::Amount,
22+
bitcoin::{Amount, TxLock},
2323
cli::{
2424
command::{Arguments, Command},
2525
config::{read_config, Config},
@@ -112,7 +112,7 @@ async fn main() -> Result<()> {
112112
debug!("Received {}", bitcoin_wallet.balance().await?);
113113
}
114114

115-
let send_bitcoin = bitcoin_wallet.max_giveable().await?;
115+
let send_bitcoin = bitcoin_wallet.max_giveable(TxLock::script_size()).await?;
116116

117117
info!("Swapping {} ...", send_bitcoin);
118118

swap/src/bitcoin/lock.rs

+12
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ use crate::bitcoin::{
33
};
44
use ::bitcoin::{util::psbt::PartiallySignedTransaction, OutPoint, TxIn, TxOut, Txid};
55
use anyhow::Result;
6+
use ecdsa_fun::fun::Point;
67
use miniscript::{Descriptor, DescriptorTrait};
8+
use rand::thread_rng;
79
use serde::{Deserialize, Serialize};
810

911
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
@@ -42,6 +44,16 @@ impl TxLock {
4244
OutPoint::new(self.txid(), self.lock_output_vout() as u32)
4345
}
4446

47+
/// Calculate the size of the script used by this transaction.
48+
pub fn script_size() -> usize {
49+
build_shared_output_descriptor(
50+
Point::random(&mut thread_rng()),
51+
Point::random(&mut thread_rng()),
52+
)
53+
.script_pubkey()
54+
.len()
55+
}
56+
4557
/// Retreive the index of the locked output in the transaction outputs
4658
/// vector
4759
fn lock_output_vout(&self) -> usize {

swap/src/bitcoin/wallet.rs

+2-6
Original file line numberDiff line numberDiff line change
@@ -132,17 +132,13 @@ impl Wallet {
132132
/// We define this as the maximum amount we can pay to a single output,
133133
/// already accounting for the fees we need to spend to get the
134134
/// transaction confirmed.
135-
pub async fn max_giveable(&self) -> Result<Amount> {
135+
pub async fn max_giveable(&self, locking_script_size: usize) -> Result<Amount> {
136136
let wallet = self.inner.lock().await;
137137

138138
let mut tx_builder = wallet.build_tx();
139139

140-
// create a dummy script to make the txbuilder pass
141-
// we don't intend to send this transaction, we just want to know the max amount
142-
// we can spend
143-
let dummy_script = Script::default();
140+
let dummy_script = Script::from(vec![0u8; locking_script_size]);
144141
tx_builder.set_single_recipient(dummy_script);
145-
146142
tx_builder.drain_wallet();
147143
tx_builder.fee_rate(self.select_feerate());
148144
let (_, details) = tx_builder.finish()?;

0 commit comments

Comments
 (0)