remove magic number: change threshold for nLockTime to constant

This commit is contained in:
Wladimir J. van der Laan
2011-07-09 10:06:49 +02:00
parent f08736405e
commit aa496b75c2
2 changed files with 4 additions and 2 deletions

View File

@@ -522,7 +522,7 @@ string FormatTxStatus(const CWalletTx& wtx)
// Status
if (!wtx.IsFinal())
{
if (wtx.nLockTime < 500000000)
if (wtx.nLockTime < LOCKTIME_THRESHOLD)
return strprintf(_("Open for %d blocks"), nBestHeight - wtx.nLockTime);
else
return strprintf(_("Open until %s"), DateTimeStr(wtx.nLockTime).c_str());