cuprate_test_utils::rpc::data::json

Constant GET_TX_IDS_LOOSE_REQUEST

Source
pub const GET_TX_IDS_LOOSE_REQUEST: &str = r#"{
  "jsonrpc": "2.0",
  "id": "0",
  "method": "get_txids_loose",
  "params": {
    "txid_template": "0000000000000000aea473c43708aa50b2c9eaf0e441aa209afc9b43458fb09e",
    "num_matching_bits": 192
  }
}"#;
Expand description

Documentation, response.

use cuprate_test_utils::rpc::data::json::*;
use serde_json::{to_value, Value};

let value = serde_json::from_str::<Value>(&GET_TX_IDS_LOOSE_REQUEST).unwrap();
let Value::Object(map) = value else {
    panic!();
};

assert_eq!(map.get("jsonrpc").unwrap(), "2.0");
map.get("id").unwrap();

if map.get("method").is_some() {
    return;
}

if map.get("result").is_none() {
    map.get("error").unwrap();
}