aboutsummaryrefslogtreecommitdiff
path: root/src/primitives
diff options
context:
space:
mode:
Diffstat (limited to 'src/primitives')
-rw-r--r--src/primitives/transaction.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/primitives/transaction.h b/src/primitives/transaction.h
index ceb8f6ace..5d9869dcb 100644
--- a/src/primitives/transaction.h
+++ b/src/primitives/transaction.h
@@ -178,6 +178,7 @@ public:
if (scriptPubKey.IsUnspendable())
return 0;
+ /*
size_t nSize = GetSerializeSize(*this, SER_DISK, 0);
int witnessversion = 0;
std::vector<unsigned char> witnessprogram;
@@ -191,6 +192,10 @@ public:
}
return 3 * minRelayTxFee.GetFee(nSize);
+ */
+
+ // Dogecoin: Anything below 1 DOGE is always dust
+ return COIN;
}
bool IsDust(const CFeeRate &minRelayTxFee) const