Removed underscores

This commit is contained in:
Stedd 2022-02-12 17:02:37 +01:00
parent 433fcd122b
commit f836479b1d
1 changed files with 4 additions and 4 deletions

View File

@ -72,12 +72,12 @@ namespace CryptoCalc
public Transaction() { SetDBStrings(); } public Transaction() { SetDBStrings(); }
public Transaction(string _currency, float _amount, string _type) public Transaction(string currency, float amount, string type)
{ {
SaveUnixTimeNow(); SaveUnixTimeNow();
Currency = _currency; Currency = currency;
Amount = _amount; Amount = amount;
TransactionType = _type; TransactionType = type;
Platform = ""; Platform = "";
Note = ""; Note = "";