From f836479b1d96a53ff3c38b663162067c5211ab83 Mon Sep 17 00:00:00 2001 From: Stedd Date: Sat, 12 Feb 2022 17:02:37 +0100 Subject: [PATCH] Removed underscores --- DBClasses.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/DBClasses.cs b/DBClasses.cs index 88e1ff8..c07cab5 100644 --- a/DBClasses.cs +++ b/DBClasses.cs @@ -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 = "";