aboutsummaryrefslogtreecommitdiff
path: root/src/dogecoin-fees.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/dogecoin-fees.cpp')
-rw-r--r--src/dogecoin-fees.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dogecoin-fees.cpp b/src/dogecoin-fees.cpp
index 890908ad6..830d4ba23 100644
--- a/src/dogecoin-fees.cpp
+++ b/src/dogecoin-fees.cpp
@@ -7,11 +7,11 @@
#include "policy/policy.h"
#include "arith_uint256.h"
-#include "dogecoin.h"
+#include "discoin.h"
#include "txmempool.h"
#include "util.h"
#include "validation.h"
-#include "dogecoin-fees.h"
+#include "discoin-fees.h"
#include "amount.h"
#ifdef ENABLE_WALLET
#include "wallet/wallet.h"
@@ -21,7 +21,7 @@
//mlumin 5/2021: walletfees, all attached to GetDogecoinWalletFeeRate which is just the newly exposed ::minWalletTxFee
CAmount GetDogecoinWalletFee(size_t nBytes_)
{
- //mlumin: super simple fee calc for dogecoin
+ //mlumin: super simple fee calc for discoin
CAmount nFee=GetDogecoinWalletFeeRate().GetFee(nBytes_);
}
@@ -29,7 +29,7 @@ CAmount GetDogecoinWalletFee(size_t nBytes_)
//mlumin: this is somewhat redundant to the globally exposed ::minWalletTxFee, but honestly I'd like to have both the rate and amount (with size) here
CFeeRate GetDogecoinWalletFeeRate()
{
- //mlumin 5/2021: currently 1x COIN or 1 dogecoin or 100,000,000 koinu
+ //mlumin 5/2021: currently 1x COIN or 1 discoin or 100,000,000 koinu
return ::minWalletTxFeeRate;
}
#endif