Add zero-confirmation support to webhooks (only)

This commit is contained in:
Lee *!* Clagett 2023-06-03 18:49:50 -04:00
parent 5c5d5daba6
commit ee7904459c

View file

@ -95,5 +95,15 @@ namespace rpc
{
return wire::json::from_bytes<full_txpool_pub>(std::move(source));
}
static void read_bytes(wire::json_reader& source, full_txpool_pub& self)
{
wire_read::array(source, self.txes);
}
expect<full_txpool_pub> full_txpool_pub::from_json(std::string&& source)
{
return wire::json::from_bytes<full_txpool_pub>(std::move(source));
}
}
}