We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3626d39 commit a0e4091Copy full SHA for a0e4091
client/src/client.rs
@@ -446,6 +446,15 @@ pub trait RpcApi: Sized {
446
Ok(dashcore::consensus::encode::deserialize(&bytes)?)
447
}
448
449
+ fn get_instant_locks(
450
+ &self,
451
+ txids: Vec<&dashcore::Txid>,
452
+ ) -> Result<Vec<String>> {
453
+ let mut args = [into_json(txids)?];
454
+ let instant_locks: Vec<String> = self.call("getislocks", handle_defaults(&mut args, &[null()]))?;
455
+ Ok(instant_locks)
456
+ }
457
+
458
fn get_raw_transaction_multi(
459
&self,
460
transactions_by_block_hash: BTreeMap<&BlockHash, Vec<&dashcore::Txid>>,
0 commit comments