mirror of
https://github.com/Nathanwoodburn/FireWallet.git
synced 2024-11-13 10:48:15 +11:00
TXs: Fixed decimal errors
This commit is contained in:
parent
3eda3d7419
commit
6db6d02e9e
@ -960,7 +960,7 @@ namespace FireWallet
|
|||||||
int inputCount = inputs.Count;
|
int inputCount = inputs.Count;
|
||||||
int outputCount = outputs.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 = "";
|
string cost = "";
|
||||||
if (costHNS < 0)
|
if (costHNS < 0)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user