diff options
| author | chromatic <[email protected]> | 2021-08-22 12:28:52 -0700 |
|---|---|---|
| committer | chromatic <[email protected]> | 2021-08-22 12:28:52 -0700 |
| commit | aeccc23943e32a14940ea80f2564026532267eb4 (patch) | |
| tree | 11243a95eecdc8767b9345421168adddf42404e2 | |
| parent | Merge pull request #2479 from slightlyskepticalpotat/snap-improvements (diff) | |
| download | discoin-aeccc23943e32a14940ea80f2564026532267eb4.tar.xz discoin-aeccc23943e32a14940ea80f2564026532267eb4.zip | |
Return value from non-void function
| -rw-r--r-- | src/dogecoin-fees.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dogecoin-fees.cpp b/src/dogecoin-fees.cpp index 890908ad6..96f8655cf 100644 --- a/src/dogecoin-fees.cpp +++ b/src/dogecoin-fees.cpp @@ -23,6 +23,7 @@ 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. |