aboutsummaryrefslogtreecommitdiff
path: root/src/primitives
diff options
context:
space:
mode:
authorTomo Ueda <[email protected]>2021-09-02 12:55:18 -0700
committerTomo Ueda <[email protected]>2021-09-02 12:55:18 -0700
commite64843ced509c24f783276d4cc0f2f26c9d527f2 (patch)
tree7956d4ea416c5b3a531dbc6f356e1c9a643d9690 /src/primitives
parentreally s/doge/dis/g this time (diff)
downloaddiscoin-e64843ced509c24f783276d4cc0f2f26c9d527f2.tar.xz
discoin-e64843ced509c24f783276d4cc0f2f26c9d527f2.zip
really s/Doge/Dis/g this time
Diffstat (limited to 'src/primitives')
-rw-r--r--src/primitives/pureheader.h2
-rw-r--r--src/primitives/transaction.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/primitives/pureheader.h b/src/primitives/pureheader.h
index 841743632..a9512127c 100644
--- a/src/primitives/pureheader.h
+++ b/src/primitives/pureheader.h
@@ -150,7 +150,7 @@ public:
inline bool IsLegacy() const
{
return nVersion == 1
- // Dogecoin: We have a random v2 block with no AuxPoW, treat as legacy
+ // Discoin: We have a random v2 block with no AuxPoW, treat as legacy
|| (nVersion == 2 && GetChainId() == 0);
}
};
diff --git a/src/primitives/transaction.h b/src/primitives/transaction.h
index 63e34697a..e2efd8091 100644
--- a/src/primitives/transaction.h
+++ b/src/primitives/transaction.h
@@ -197,7 +197,7 @@ public:
return 3 * minRelayTxFee.GetFee(nSize);
*/
- // Dogecoin: Anything below 1 DOGE is always dust
+ // Discoin: Anything below 1 DOGE is always dust
return nDustLimit;
}
@@ -311,7 +311,7 @@ class CTransaction
{
public:
// Default transaction version.
- // Dogecoin: Temporarily restricted to v1 for compatibility with 1.10
+ // Discoin: Temporarily restricted to v1 for compatibility with 1.10
static const int32_t CURRENT_VERSION=1;
// Changing the default transaction version requires a two step process: first