mirror of
https://github.com/vtnerd/monero-lws.git
synced 2025-04-02 20:09:03 +00:00
Fix fake outs
This commit is contained in:
parent
f5cc35f2d0
commit
642b7cdfd4
1 changed files with 2 additions and 2 deletions
|
@ -517,9 +517,9 @@ namespace lws
|
|||
void scan_transactions(std::string&& txpool_msg, epee::span<lws::account> users, db::storage const& disk, rpc::client& client, const net::ssl_verification_t verify_mode)
|
||||
{
|
||||
// uint64::max is for txpool
|
||||
static const std::vector<std::uint64_t> fake_outs{
|
||||
static const std::vector<std::uint64_t> fake_outs(
|
||||
256, std::numeric_limits<std::uint64_t>::max()
|
||||
};
|
||||
);
|
||||
|
||||
const auto parsed = rpc::full_txpool_pub::from_json(std::move(txpool_msg));
|
||||
if (!parsed)
|
||||
|
|
Loading…
Reference in a new issue