diff --git a/src/dogecoin-fees.cpp b/src/dogecoin-fees.cpp index bf8affe88..82802afa1 100644 --- a/src/dogecoin-fees.cpp +++ b/src/dogecoin-fees.cpp @@ -62,21 +62,6 @@ const std::string GetDogecoinPriorityLabel(int priority) return _("Default"); } -//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 - CAmount nFee=GetDogecoinWalletFeeRate().GetFee(nBytes_); - return nFee; -} - -//mlumin 5/2021: Establish a wallet rate of n koinu per kb. -//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 - return CWallet::minTxFee; -} #endif CAmount GetDogecoinMinRelayFee(const CTransaction& tx, unsigned int nBytes, bool fAllowFree) diff --git a/src/dogecoin-fees.h b/src/dogecoin-fees.h index c8eab7b0a..759af9e46 100644 --- a/src/dogecoin-fees.h +++ b/src/dogecoin-fees.h @@ -24,8 +24,6 @@ enum FeeRatePreset /** Estimate fee rate needed to get into the next nBlocks */ CFeeRate GetDogecoinFeeRate(int priority); const std::string GetDogecoinPriorityLabel(int priority); -CFeeRate GetDogecoinWalletFeeRate(); -CAmount GetDogecoinMinWalletFee(unsigned int nBytes_); #endif // ENABLE_WALLET CAmount GetDogecoinMinRelayFee(const CTransaction& tx, unsigned int nBytes, bool fAllowFree); CAmount GetDogecoinDustFee(const std::vector &vout, const CAmount dustLimit);