diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-06-20 21:31:06 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-06-20 21:34:31 +0200 |
commit | 18b99e3f69e039f8f431e49c3d1e6c9f96fe3896 (patch) | |
tree | 4d255971a25584865ce33809a9ffde3171c40820 /src/qt/transactionrecord.h | |
parent | 679592720af4bae337bcb2d2c0343a9352bbfefc (diff) |
number of confirmations is no longer magic value
Diffstat (limited to 'src/qt/transactionrecord.h')
-rw-r--r-- | src/qt/transactionrecord.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/transactionrecord.h b/src/qt/transactionrecord.h index c082fffe9c..a7f6537b3f 100644 --- a/src/qt/transactionrecord.h +++ b/src/qt/transactionrecord.h @@ -59,6 +59,9 @@ public: SendToSelf }; + /* Number of confirmation needed for transaction */ + static const int NumConfirmations = 6; + TransactionRecord(): hash(), time(0), type(Other), address(""), debit(0), credit(0), idx(0) { |