diff options
| author | Jeff Garzik <[email protected]> | 2011-07-09 10:09:13 -0700 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2011-07-09 10:09:13 -0700 |
| commit | 354f2dd09487c865f8f0d0d40f66573f764e5a96 (patch) | |
| tree | 67abb7bd2f19c5850b0d3dc80bec8f321b2cca47 /src/ui.cpp | |
| parent | Compile 'sv' translation (diff) | |
| parent | remove magic number: change threshold for nLockTime to constant (diff) | |
| download | discoin-354f2dd09487c865f8f0d0d40f66573f764e5a96.tar.xz discoin-354f2dd09487c865f8f0d0d40f66573f764e5a96.zip | |
Merge pull request #392 from laanwj/antimagic
Remove another magic number: change threshold for nLockTime to constant
Diffstat (limited to 'src/ui.cpp')
| -rw-r--r-- | src/ui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui.cpp b/src/ui.cpp index 9b84fb9e6..ff0b4afb5 100644 --- a/src/ui.cpp +++ b/src/ui.cpp @@ -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()); |