There was an error while loading. Please reload this page.
1 parent 682eb8a commit dd92f03Copy full SHA for dd92f03
1 file changed
tests/pset.rs
@@ -25,7 +25,6 @@ use std::str::FromStr;
25
trait Call {
26
fn call(&self, cmd: &str, args: &[Value]) -> Value;
27
fn decode_psbt(&self, psbt: &str) -> Option<Value>;
28
- fn analyze_psbt(&self, psbt: &str) -> Value;
29
fn get_new_address(&self) -> String;
30
fn get_pegin_address(&self) -> (String, String);
31
fn wallet_create_funded_psbt(&self, address: &str) -> String;
@@ -210,10 +209,6 @@ impl Call for ElementsD {
210
209
.ok()
211
}
212
213
- fn analyze_psbt(&self, psbt: &str) -> Value {
214
- self.call("decodepsbt", &[psbt.into()])
215
- }
216
-
217
fn get_new_address(&self) -> String {
218
self.call("getnewaddress", &[])
219
.as_str()
0 commit comments