mirror of
https://github.com/Nathanwoodburn/FireWallet.git
synced 2025-12-06 16:43:01 +11:00
TXs: Fixed decimal errors
This commit is contained in:
@@ -960,7 +960,7 @@ namespace FireWallet
|
||||
int inputCount = inputs.Count;
|
||||
int outputCount = outputs.Count;
|
||||
|
||||
int costHNS = int.Parse(txs[toGet - i - 1]["amount"].ToString());
|
||||
decimal costHNS = decimal.Parse(txs[toGet - i - 1]["amount"].ToString());
|
||||
string cost = "";
|
||||
if (costHNS < 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user