Skip to content

Commit dd92f03

Browse files
committed
remove unused analyze_psbt
1 parent 682eb8a commit dd92f03

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

tests/pset.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ use std::str::FromStr;
2525
trait Call {
2626
fn call(&self, cmd: &str, args: &[Value]) -> Value;
2727
fn decode_psbt(&self, psbt: &str) -> Option<Value>;
28-
fn analyze_psbt(&self, psbt: &str) -> Value;
2928
fn get_new_address(&self) -> String;
3029
fn get_pegin_address(&self) -> (String, String);
3130
fn wallet_create_funded_psbt(&self, address: &str) -> String;
@@ -210,10 +209,6 @@ impl Call for ElementsD {
210209
.ok()
211210
}
212211

213-
fn analyze_psbt(&self, psbt: &str) -> Value {
214-
self.call("decodepsbt", &[psbt.into()])
215-
}
216-
217212
fn get_new_address(&self) -> String {
218213
self.call("getnewaddress", &[])
219214
.as_str()

0 commit comments

Comments
 (0)