mirror of
https://github.com/vtnerd/monero-lws.git
synced 2025-04-02 20:09:03 +00:00
Add zero-confirmation support to webhooks (only)
This commit is contained in:
parent
5c5d5daba6
commit
ee7904459c
1 changed files with 10 additions and 0 deletions
|
@ -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));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue