wallet-http: fix unconfirmed tx list json.

This commit is contained in:
Nodari Chkuaselidze 2024-10-25 14:04:32 +04:00
parent 15e964612d
commit a3544853ee
No known key found for this signature in database
GPG key ID: B018A7BB437D1F05

View file

@ -796,7 +796,7 @@ class HTTP extends Server {
const result = [];
for (const item of details)
result.push(item.toJSON(this.network, this.wdb.height));
result.push(item.getJSON(this.network, this.wdb.height));
res.json(200, result);
});