Removed underscores
This commit is contained in:
parent
433fcd122b
commit
f836479b1d
|
@ -72,12 +72,12 @@ namespace CryptoCalc
|
|||
|
||||
public Transaction() { SetDBStrings(); }
|
||||
|
||||
public Transaction(string _currency, float _amount, string _type)
|
||||
public Transaction(string currency, float amount, string type)
|
||||
{
|
||||
SaveUnixTimeNow();
|
||||
Currency = _currency;
|
||||
Amount = _amount;
|
||||
TransactionType = _type;
|
||||
Currency = currency;
|
||||
Amount = amount;
|
||||
TransactionType = type;
|
||||
|
||||
Platform = "";
|
||||
Note = "";
|
||||
|
|
Loading…
Reference in New Issue