diff options
| author | Patrick Lodder <[email protected]> | 2014-05-04 00:45:32 +0400 |
|---|---|---|
| committer | Patrick Lodder <[email protected]> | 2014-05-04 00:45:32 +0400 |
| commit | 23e3eef7fc255c7780dc65d29cae1b892004415b (patch) | |
| tree | 063e64d9c72c7cd2f00fb7b4fa30f7be384dfe99 /src | |
| parent | Merge pull request #496 from leofidus/1.7-fees (diff) | |
| download | discoin-23e3eef7fc255c7780dc65d29cae1b892004415b.tar.xz discoin-23e3eef7fc255c7780dc65d29cae1b892004415b.zip | |
Require 3 confirmations like in 1.6
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/transactionrecord.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/transactionrecord.h b/src/qt/transactionrecord.h index af6fd403b..1e669127a 100644 --- a/src/qt/transactionrecord.h +++ b/src/qt/transactionrecord.h @@ -79,7 +79,7 @@ public: }; /** Number of confirmation recommended for accepting a transaction */ - static const int RecommendedNumConfirmations = 6; + static const int RecommendedNumConfirmations = 3; TransactionRecord(): hash(), time(0), type(Other), address(""), debit(0), credit(0), idx(0) |