main: Fixed showing TXs for Ledger

This commit is contained in:
Nathan Woodburn 2023-06-14 16:28:54 +10:00
parent 960af0b169
commit 531d41a413
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -884,7 +884,7 @@ namespace FireWallet
int toSkip = TotalTX - toGet;
// GET TXs
APIresponse = await APIPost("", true, "{\"method\": \"listtransactions\",\"params\": [\"default\"," + toGet + "," + toSkip + "]}");
APIresponse = await APIPost("", true, "{\"method\": \"listtransactions\",\"params\": [\"default\"," + toGet + "," + toSkip + ", true]}");
if (APIresponse == "Error")
{
@ -902,6 +902,7 @@ namespace FireWallet
}
JArray txs = JArray.Parse(TXGET["result"].ToString());
if (toGet > txs.Count) toGet = txs.Count;
Control[] tmpControls = new Control[toGet];
for (int i = 0; i < toGet; i++)
{