commit 5e7296f4b875d2db64823130063ffeb4a91f059d
parent 0b53546c861f33ed588dc3bba314b2c7fcd9389c
Author: Antoine A <>
Date: Tue, 7 Jul 2026 18:03:47 +0200
bitcoin: stop using deprecated replaceable logic
Diffstat:
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/depolymerizer-bitcoin/src/rpc.rs b/depolymerizer-bitcoin/src/rpc.rs
@@ -1,6 +1,6 @@
/*
This file is part of TALER
- Copyright (C) 2022-2025, 2026 Taler Systems SA
+ Copyright (C) 2022-2026, 2026 Taler Systems SA
TALER is free software; you can redistribute it and/or modify it under the
terms of the GNU Affero General Public License as published by the Free Software
@@ -469,7 +469,6 @@ pub trait RpcApi {
} else {
vec![]
},
- replaceable: true,
},
),
)
@@ -576,7 +575,6 @@ pub struct SendOption {
pub add_inputs: bool,
pub inputs: Vec<Value>,
pub subtract_fee_from_outputs: Vec<usize>,
- pub replaceable: bool,
}
#[derive(Debug, serde::Deserialize)]
@@ -664,7 +662,6 @@ pub struct Transaction {
pub replaced_by_txid: Option<Txid>,
pub details: Vec<TransactionDetail>,
pub decoded: InputOutput,
- //pub height: u32,
}
#[derive(Clone, PartialEq, Eq, serde::Deserialize, Debug)]