diff --git a/FireWallet/MainForm.cs b/FireWallet/MainForm.cs index 937a18a..daf2322 100644 --- a/FireWallet/MainForm.cs +++ b/FireWallet/MainForm.cs @@ -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++) {