diff options
| author | Gavin Andresen <[email protected]> | 2010-09-30 14:28:23 -0400 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2010-09-30 14:28:23 -0400 |
| commit | 369010406e7307b00b6e48e9c6415fff4bb032a3 (patch) | |
| tree | 03790edbb58f0ad2142e709c93d54543c9ade115 /init.cpp | |
| parent | Merge commit 'svn/trunk' into svn (diff) | |
| parent | don't count or spend payments until they have 1 confirmation, (diff) | |
| download | discoin-369010406e7307b00b6e48e9c6415fff4bb032a3.tar.xz discoin-369010406e7307b00b6e48e9c6415fff4bb032a3.zip | |
Merge remote branch 'refs/remotes/svn/trunk' into svn
Diffstat (limited to 'init.cpp')
| -rw-r--r-- | init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -203,7 +203,7 @@ bool AppInit2(int argc, char* argv[]) if (!fDebug && !pszSetDataDir[0]) ShrinkDebugFile(); printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"); - printf("Bitcoin version %d.%d.%d%s beta\n", VERSION/10000, (VERSION/100)%100, VERSION%100, pszSubVer); + printf("Bitcoin version %s%s beta\n", FormatVersion(VERSION).c_str(), pszSubVer); #ifdef GUI printf("OS version %s\n", ((string)wxGetOsDescription()).c_str()); printf("System default language is %d %s\n", g_locale.GetSystemLanguage(), ((string)g_locale.GetSysName()).c_str()); |