novacoin.git
12 years agoBugfix: Replace "URL" with "URI" where we aren't actually working with URLs
Luke Dashjr [Sun, 25 Mar 2012 21:25:10 +0000]
Bugfix: Replace "URL" with "URI" where we aren't actually working with URLs

12 years agoMerge pull request #1033 from sipa/wait
Pieter Wuille [Fri, 6 Apr 2012 11:11:14 +0000]
Merge pull request #1033 from sipa/wait

Condition variables instead of polling

12 years agoMerge pull request #1051 from graingert/patch-1
Gregory Maxwell [Fri, 6 Apr 2012 02:21:03 +0000]
Merge pull request #1051 from graingert/patch-1

Change sign message bitcoin address tooltip to "The address to sign the ...

12 years agoChange sign message bitcoin address tooltip to "The address to sign the message with...
graingert [Fri, 6 Apr 2012 02:08:16 +0000]
Change sign message bitcoin address tooltip to "The address to sign the message with" Closes #1050

12 years agoMerge pull request #1047 from luke-jr/strlcpy_attribute
Gavin Andresen [Thu, 5 Apr 2012 23:41:20 +0000]
Merge pull request #1047 from luke-jr/strlcpy_attribute

Document strlcpy.h in assets-attribution.txt since it isn't MIT-licensed

12 years agoDocument strlcpy.h in assets-attribution.txt since it isn't MIT-licensed
Luke Dashjr [Thu, 5 Apr 2012 22:58:20 +0000]
Document strlcpy.h in assets-attribution.txt since it isn't MIT-licensed

12 years agoMerge pull request #1045 from sipa/fastblocks2
Pieter Wuille [Thu, 5 Apr 2012 20:02:16 +0000]
Merge pull request #1045 from sipa/fastblocks2

Flush on log size instead of transaction count

12 years agoFlush on log size instead of transaction count
Pieter Wuille [Thu, 5 Apr 2012 15:54:30 +0000]
Flush on log size instead of transaction count

12 years agoMerge pull request #1043 from Diapolo/misc
Gavin Andresen [Thu, 5 Apr 2012 14:36:23 +0000]
Merge pull request #1043 from Diapolo/misc

removed obsolete boost workaround (boost ticket #4258)

12 years agoMerge pull request #1042 from gavinandresen/use_ssl_cleanup
Gavin Andresen [Thu, 5 Apr 2012 14:34:45 +0000]
Merge pull request #1042 from gavinandresen/use_ssl_cleanup

Remove USE_SSL #define

12 years agoMerge pull request #1037 from gavinandresen/addmultisigenable
Gavin Andresen [Thu, 5 Apr 2012 14:34:19 +0000]
Merge pull request #1037 from gavinandresen/addmultisigenable

Enable addmultisigaddress RPC call for main network

12 years agoMerge pull request #1036 from gavinandresen/pubsubcleanup
Gavin Andresen [Thu, 5 Apr 2012 14:33:54 +0000]
Merge pull request #1036 from gavinandresen/pubsubcleanup

Remove half-implemented publish/subscribe system

12 years agoMerge pull request #1035 from gavinandresen/osxbuild
Gavin Andresen [Thu, 5 Apr 2012 14:33:00 +0000]
Merge pull request #1035 from gavinandresen/osxbuild

Add ifdef RELEASE to makefile.osx as the compile-for-older-macs flags

12 years agoMerge pull request #1039 from sipa/fix_955
Gregory Maxwell [Thu, 5 Apr 2012 13:17:05 +0000]
Merge pull request #1039 from sipa/fix_955

Fix #955: Verify status of encrypt/decrypt calls to detect failed padding

12 years agoremoved obsolete boost workaround (boost ticket #4258)
Philip Kaufmann [Thu, 5 Apr 2012 06:34:31 +0000]
removed obsolete boost workaround (boost ticket #4258)

12 years agoMerge pull request #1038 from Diapolo/misc
Wladimir J. van der Laan [Thu, 5 Apr 2012 05:52:34 +0000]
Merge pull request #1038 from Diapolo/misc

small misc syntactic fixes

12 years agoRemove USE_SSL #define
Gavin Andresen [Thu, 5 Apr 2012 01:19:27 +0000]
Remove USE_SSL #define

12 years agoVerify status of encrypt/decrypt calls to detect failed padding
Pieter Wuille [Wed, 4 Apr 2012 23:02:49 +0000]
Verify status of encrypt/decrypt calls to detect failed padding

12 years agoremoved an unneeded space in bitcoin-qt.pro
Philip Kaufmann [Mon, 2 Apr 2012 20:25:04 +0000]
removed an unneeded space in bitcoin-qt.pro

12 years agoremoved an unused / obsolete tag from bitcoin.qrc
Philip Kaufmann [Mon, 2 Apr 2012 20:22:26 +0000]
removed an unused / obsolete tag from bitcoin.qrc

12 years agoEnable addmultisigaddress RPC call for main network
Gavin Andresen [Wed, 4 Apr 2012 20:01:27 +0000]
Enable addmultisigaddress RPC call for main network

12 years agoRemove half-implemented publish/subscribe system
Gavin Andresen [Wed, 4 Apr 2012 19:56:00 +0000]
Remove half-implemented publish/subscribe system

12 years agoAdd ifdef RELEASE to makefile.osx as the compile-for-older-macs flags
Gavin Andresen [Wed, 4 Apr 2012 19:45:31 +0000]
Add ifdef RELEASE to makefile.osx as the compile-for-older-macs flags

12 years agoCondition variable for outbound connection slots
Pieter Wuille [Wed, 4 Apr 2012 14:01:57 +0000]
Condition variable for outbound connection slots

Keep a global counter for nOutbound, protected with its own waitable
critical section, and wait when all outbound slots are filled, rather
than polling.

This removes the (on average) 1 second delay between a lost connection
and a new connection attempt, and may speed up shutdowns.

12 years agoLocking system overhaul, add condition variables
Pieter Wuille [Mon, 2 Apr 2012 00:40:41 +0000]
Locking system overhaul, add condition variables

This commit simplifies the locking system: CCriticalSection becomes a
simple typedef for boost::interprocess::interprocess_recursive_mutex,
and CCriticalBlock and CTryCriticalBlock are replaced by a templated
CMutexLock, which wraps boost::interprocess::scoped_lock.

By making the lock type a template parameter, some critical sections
can now be changed to non-recursive locks, which support waiting via
condition variables. These are implemented in CWaitableCriticalSection
and WAITABLE_CRITICAL_BLOCK.

CWaitableCriticalSection is a wrapper for a different Boost mutex,
which supports waiting/notification via condition variables. This
should enable us to remove much of the used polling code. Important
is that this mutex is not recursive, so functions that perform the
locking must not call eachother.

Because boost::interprocess::scoped_lock does not support assigning
and copying, I had to revert to the older CRITICAL_BLOCK macros that
use a nested for loop instead of a simple if.

12 years agoMerge pull request #1019 from laanwj/2012_03_uirefactor
Pieter Wuille [Wed, 4 Apr 2012 12:03:07 +0000]
Merge pull request #1019 from laanwj/2012_03_uirefactor

Streamline UI ↔ Core interface

12 years agoMerge pull request #1025 from Diapolo/GUI-BlockDL
Wladimir J. van der Laan [Wed, 4 Apr 2012 11:36:09 +0000]
Merge pull request #1025 from Diapolo/GUI-BlockDL

modified block DL progressbar to be more informative and precise

12 years agoMove from noui.h / ui.h to one ui_interface.h with dummy implementation for the daemon.
Wladimir J. van der Laan [Wed, 4 Apr 2012 11:19:30 +0000]
Move from noui.h / ui.h to one ui_interface.h with dummy implementation for the daemon.

12 years agoUse a messagebox to display the error when -server is provided without providing...
Wladimir J. van der Laan [Sat, 31 Mar 2012 13:08:25 +0000]
Use a messagebox to display the error when -server is provided without providing a rpc password

12 years agoqtui.h/noui.h interface cleanup
Wladimir J. van der Laan [Sun, 25 Mar 2012 18:47:33 +0000]
qtui.h/noui.h interface cleanup

- rename wxMessageBox, remove redundant arguments to noui/qtui calls
- also, add flag to force blocking, modal dialog box for disk space warning etc
- clarify function naming
- no more special MessageBox needed from AppInit2, as window object is created before calling AppInit2

12 years agosupport RPC stop and encryptwallet with UI
Wladimir J. van der Laan [Sun, 25 Mar 2012 18:17:59 +0000]
support RPC stop and encryptwallet with UI

12 years agomove translation function _ to qtui.h/noui.h instead of util.h
Wladimir J. van der Laan [Sat, 24 Mar 2012 20:13:48 +0000]
move translation function _ to qtui.h/noui.h instead of util.h

12 years agoremove dependency on serialize.h and util.h for SecureString
Wladimir J. van der Laan [Sat, 24 Mar 2012 19:07:01 +0000]
remove dependency on serialize.h and util.h for SecureString

12 years agoremove unused CalledSetStatusBar and UIThreadCall notifications
Wladimir J. van der Laan [Sat, 24 Mar 2012 18:11:39 +0000]
remove unused CalledSetStatusBar and UIThreadCall notifications

12 years agoUpdate UI through async calls MainFrameRepaint and AddressBookRepaint instead of...
Wladimir J. van der Laan [Sat, 24 Mar 2012 17:48:18 +0000]
Update UI through async calls MainFrameRepaint and AddressBookRepaint instead of a timer.

- Overall, this is better design
- This fixes problems with the address book UI not updating when the address book is changed through RPC
- Move Statusbar change detection responsibility to ClientModel

12 years agoCode deduplication: make function in GUIUtil to get connection type to call object...
Wladimir J. van der Laan [Sat, 24 Mar 2012 16:07:29 +0000]
Code deduplication: make function in GUIUtil to get connection type to call object slot in GUI thread
with invokeMethod.

12 years agomove QT_PLUGINS stuff to qt main file, where it belongs
Wladimir J. van der Laan [Sat, 24 Mar 2012 15:52:43 +0000]
move QT_PLUGINS stuff to qt main file, where it belongs

12 years agoMerge pull request #949 from laanwj/2012_03_vc2010compilefixes
Wladimir J. van der Laan [Tue, 3 Apr 2012 18:35:33 +0000]
Merge pull request #949 from laanwj/2012_03_vc2010compilefixes

VC2010 compile fixes

12 years agoVC2010 compile fixes
Wladimir J. van der Laan [Sun, 18 Mar 2012 22:14:03 +0000]
VC2010 compile fixes

12 years agoMerge pull request #934 from luke-jr/gitian_luke
Gregory Maxwell [Tue, 3 Apr 2012 15:09:13 +0000]
Merge pull request #934 from luke-jr/gitian_luke

Add Luke-Jr's PGP key to gitian-downloader

12 years agoclarified comment why we use an own progressbar style / included "~" in the tr()...
Philip Kaufmann [Tue, 3 Apr 2012 07:42:34 +0000]
clarified comment why we use an own progressbar style / included "~" in the tr() call

12 years agochanged percentage done in tooltip to float to be more precise / allowed plurals...
Philip Kaufmann [Tue, 3 Apr 2012 06:30:13 +0000]
changed percentage done in tooltip to float to be more precise / allowed plurals in translation for "x block(s) remaining"

12 years agoMerge pull request #1026 from laanwj/2012_04_increase_up_to_date_time
Gregory Maxwell [Tue, 3 Apr 2012 03:35:44 +0000]
Merge pull request #1026 from laanwj/2012_04_increase_up_to_date_time

Increase time ago of last block for "up to date" status from 30 to 90 minutes

12 years agopolished code and fixed progress display (was very jerky at the end of a sync)
Philip Kaufmann [Mon, 2 Apr 2012 21:51:40 +0000]
polished code and fixed progress display (was very jerky at the end of a sync)

12 years agocolor update for progress bar
Philip Kaufmann [Mon, 2 Apr 2012 18:29:07 +0000]
color update for progress bar

12 years agoimplemented OS independent progress bar style / moved one-time functions used on...
Philip Kaufmann [Mon, 2 Apr 2012 17:07:03 +0000]
implemented OS independent progress bar style / moved one-time functions used on the bar to a better code location

12 years agochanged progressbar text to "~n blocks remaining"
Philip Kaufmann [Mon, 2 Apr 2012 13:28:53 +0000]
changed progressbar text to "~n blocks remaining"

12 years agoremoved relative progressbar display and moved re-worked network detection code to...
Philip Kaufmann [Mon, 2 Apr 2012 08:18:51 +0000]
removed relative progressbar display and moved re-worked network detection code to setNumBlocks()

12 years agomodified block DL progressbar to be dynamic and more precise
Philip Kaufmann [Mon, 2 Apr 2012 05:57:54 +0000]
modified block DL progressbar to be dynamic and more precise

12 years agoIncrease time ago of last block for "up to date" status from 30 to 90 minutes
Wladimir J. van der Laan [Mon, 2 Apr 2012 18:34:17 +0000]
Increase time ago of last block for "up to date" status from 30 to 90 minutes

It was too hyperactive.
gmaxwell: I mean that right now when the block gap goes over an hour it starts showing synchronizing. Increasing that to 90 minutes or so would make it only happen about 6.4 times per year

12 years agoMerge pull request #951 from TheBlueMatt/headerslimit
Gavin Andresen [Mon, 2 Apr 2012 18:22:11 +0000]
Merge pull request #951 from TheBlueMatt/headerslimit

Limit getheaders to a hard 2000.

12 years agoMerge pull request #998 from Diapolo/transactiontable
Pieter Wuille [Mon, 2 Apr 2012 14:19:22 +0000]
Merge pull request #998 from Diapolo/transactiontable

removed an ugly line break in a transaction tooltip

12 years agoMerge pull request #1022 from Diapolo/fix#1020
Pieter Wuille [Mon, 2 Apr 2012 14:08:14 +0000]
Merge pull request #1022 from Diapolo/fix#1020

fix for #1020

12 years agoMerge pull request #995 from Diapolo/master
Pieter Wuille [Mon, 2 Apr 2012 14:07:48 +0000]
Merge pull request #995 from Diapolo/master

fixed typo in comment in netbase.h and bignum.h

12 years agoMerge pull request #1006 from Diapolo/tr-tray
Pieter Wuille [Mon, 2 Apr 2012 14:07:21 +0000]
Merge pull request #1006 from Diapolo/tr-tray

made tray icon tooltip translatable

12 years agoMerge pull request #1018 from sipa/gpg
Pieter Wuille [Mon, 2 Apr 2012 14:06:24 +0000]
Merge pull request #1018 from sipa/gpg

Updated my GPG key

12 years agoBump version to 0.6.0.99 for 0.6.1 merge window
Gavin Andresen [Mon, 2 Apr 2012 14:03:26 +0000]
Bump version to 0.6.0.99 for 0.6.1 merge window

12 years agohide Delete button (only) on ReceivingTab / hide Sign message button (only) on SendingTab
Philip Kaufmann [Sun, 1 Apr 2012 11:22:13 +0000]
hide Delete button (only) on ReceivingTab / hide Sign message button (only) on SendingTab

12 years agoUpdated my GPG key
Pieter Wuille [Mon, 26 Mar 2012 20:12:25 +0000]
Updated my GPG key

12 years agofixed typo in comment in netbase.h and bignum.h
Philip Kaufmann [Mon, 26 Mar 2012 20:33:28 +0000]
fixed typo in comment in netbase.h and bignum.h

12 years agoMerge branch 'master' of github.com:bitcoin/bitcoin
Gavin Andresen [Thu, 29 Mar 2012 19:11:04 +0000]
Merge branch 'master' of github.com:bitcoin/bitcoin

12 years agoMerge pull request #1010 from sipa/fastblocks2
Gavin Andresen [Thu, 29 Mar 2012 19:10:30 +0000]
Merge pull request #1010 from sipa/fastblocks2

Use transactions-updated as flush condition

12 years agoMerge pull request #1008 from gavinandresen/addrworkaround
Gavin Andresen [Thu, 29 Mar 2012 19:10:08 +0000]
Merge pull request #1008 from gavinandresen/addrworkaround

Workaround hangs when upgrading old addr.dat files

12 years agoUse transactions-updated as flush condition
Pieter Wuille [Wed, 28 Mar 2012 20:09:18 +0000]
Use transactions-updated as flush condition

The normal checkpointing during the block chain download is reduced
to every five minutes only, but forced every 200000 updated transactions.

12 years agoBump version to 0.6.0rc6
Gavin Andresen [Thu, 29 Mar 2012 17:58:22 +0000]
Bump version to 0.6.0rc6

12 years agoWorkaround hangs when upgrading old addr.dat files
Gavin Andresen [Thu, 29 Mar 2012 17:34:07 +0000]
Workaround hangs when upgrading old addr.dat files

12 years agoMerge pull request #1007 from gavinandresen/log_auto_remove
Gavin Andresen [Thu, 29 Mar 2012 17:13:42 +0000]
Merge pull request #1007 from gavinandresen/log_auto_remove

Auto-remove logs, and decrease logfile size to 10M

12 years agoMerge pull request #996 from Diapolo/tx-lang-upd
Gavin Andresen [Thu, 29 Mar 2012 13:48:01 +0000]
Merge pull request #996 from Diapolo/tx-lang-upd

update translations from transifex

12 years agoAuto-remove logs, and decrease logfile size to 10M
Gavin Andresen [Thu, 29 Mar 2012 13:03:11 +0000]
Auto-remove logs, and decrease logfile size to 10M

12 years agomade tray icon tooltip translatable
Philip Kaufmann [Thu, 29 Mar 2012 05:58:49 +0000]
made tray icon tooltip translatable

12 years agoremoved an ugly line break in a transaction tooltip for case TransactionStatus::Mature
Philip Kaufmann [Tue, 27 Mar 2012 21:15:05 +0000]
removed an ugly line break in a transaction tooltip for case TransactionStatus::Mature

12 years agoupdate translations from transifex
Philip Kaufmann [Tue, 27 Mar 2012 08:11:39 +0000]
update translations from transifex

12 years agoUpdate version to 60005 (0.6.0rc5)
Gavin Andresen [Mon, 26 Mar 2012 19:42:06 +0000]
Update version to 60005 (0.6.0rc5)

12 years agoMerge branch 'master' of github.com:bitcoin/bitcoin
Gavin Andresen [Mon, 26 Mar 2012 19:37:40 +0000]
Merge branch 'master' of github.com:bitcoin/bitcoin

12 years agoMerge pull request #994 from sipa/deladdr
Gavin Andresen [Mon, 26 Mar 2012 19:35:04 +0000]
Merge pull request #994 from sipa/deladdr

Use erase instead of rewrite to remove old addr entries

12 years agoMerge branch 'master' of github.com:bitcoin/bitcoin
Gavin Andresen [Mon, 26 Mar 2012 19:34:13 +0000]
Merge branch 'master' of github.com:bitcoin/bitcoin

12 years agoMerge pull request #992 from gavinandresen/remove_wxBitcoin
Gavin Andresen [Mon, 26 Mar 2012 19:33:02 +0000]
Merge pull request #992 from gavinandresen/remove_wxBitcoin

Remove wxWidgets .exe during setup

12 years agoMerge branch 'master' of github.com:bitcoin/bitcoin
Gavin Andresen [Mon, 26 Mar 2012 19:31:32 +0000]
Merge branch 'master' of github.com:bitcoin/bitcoin

12 years agoMerge pull request #991 from gavinandresen/disableWinURI
Gavin Andresen [Mon, 26 Mar 2012 19:31:06 +0000]
Merge pull request #991 from gavinandresen/disableWinURI

Disable bitcoin: URI handling on Windows for the 0.6 release

12 years agoMerge pull request #990 from sipa/doc
Wladimir J. van der Laan [Mon, 26 Mar 2012 19:27:49 +0000]
Merge pull request #990 from sipa/doc

Begin doxygen-compatible comments

12 years agoMerge branch 'deladdr' of https://github.com/sipa/bitcoin
Gavin Andresen [Mon, 26 Mar 2012 18:32:26 +0000]
Merge branch 'deladdr' of https://github.com/sipa/bitcoin

12 years agoUse erase instead of rewrite to remove old addr entries
Pieter Wuille [Mon, 26 Mar 2012 18:17:35 +0000]
Use erase instead of rewrite to remove old addr entries

12 years agoRemove wxWidgets .exe and locales during setup
Gavin Andresen [Mon, 26 Mar 2012 16:33:35 +0000]
Remove wxWidgets .exe and locales during setup

12 years agoMerge pull request #988 from Diapolo/URL-Handling
Wladimir J. van der Laan [Mon, 26 Mar 2012 17:58:48 +0000]
Merge pull request #988 from Diapolo/URL-Handling

show Window, when user is clicking bitcoin: link

12 years agoDisable bitcoin: URI handling on Windows for the 0.6 release
Gavin Andresen [Mon, 26 Mar 2012 16:18:24 +0000]
Disable bitcoin: URI handling on Windows for the 0.6 release

12 years agoBegin doxygen-compatible comments
Pieter Wuille [Mon, 26 Mar 2012 14:48:23 +0000]
Begin doxygen-compatible comments

12 years agomake sure Window is shown when clicking bitcoin: Links to get user attention
Philip Kaufmann [Mon, 26 Mar 2012 07:19:49 +0000]
make sure Window is shown when clicking bitcoin: Links to get user attention

12 years agoMerge pull request #974 from sipa/walletupgrade
Pieter Wuille [Mon, 26 Mar 2012 02:44:52 +0000]
Merge pull request #974 from sipa/walletupgrade

Introduce explicit -walletupgrade option

12 years agoMerge pull request #983 from laanwj/2012_03_removeunusedutil
Pieter Wuille [Mon, 26 Mar 2012 02:31:03 +0000]
Merge pull request #983 from laanwj/2012_03_removeunusedutil

Remove unused functions from util.h/util.cpp (EOM)

12 years agoMerge pull request #984 from sipa/youngseeds
Pieter Wuille [Mon, 26 Mar 2012 00:47:54 +0000]
Merge pull request #984 from sipa/youngseeds

Give DNS seeds a random age between 3 and 7 days old

12 years agoMerge pull request #985 from TheBlueMatt/uri
Pieter Wuille [Sun, 25 Mar 2012 17:32:31 +0000]
Merge pull request #985 from TheBlueMatt/uri

Fix URI link to bitcoin-qt.exe instead of bitcoin.exe

12 years agoFix URI link to bitcoin-qt.exe instead of bitcoin.exe
Matt Corallo [Sun, 25 Mar 2012 17:23:35 +0000]
Fix URI link to bitcoin-qt.exe instead of bitcoin.exe

12 years agoGive DNS seeds a random age between 3 and 7 days old
Pieter Wuille [Sun, 25 Mar 2012 14:06:16 +0000]
Give DNS seeds a random age between 3 and 7 days old

This speeds up initial connections with an old/large addr.dat a lot.

12 years agoremove unused functions from util.h/util.cpp
Wladimir J. van der Laan [Sat, 24 Mar 2012 20:36:10 +0000]
remove unused functions from util.h/util.cpp

12 years agoAdd Luke-Jr's PGP key to gitian-downloader
Luke Dashjr [Mon, 12 Mar 2012 04:45:08 +0000]
Add Luke-Jr's PGP key to gitian-downloader

12 years agoIntroduce explicit -walletupgrade option
Pieter Wuille [Thu, 22 Mar 2012 02:56:31 +0000]
Introduce explicit -walletupgrade option

Do not automatically change the wallet format unless the user takes an
explicit action that implies an upgrade (encrypting, for now), or uses
-walletupgrade.

-walletupgrade optionally takes an integer argument: the client version
up to which upgrading is allowed. Without an argument, it is upgraded
to latest supported version. If an argument to -walletupgrade is
provided at the time the wallet is created, the new wallet will initially
not use features beyond that version.

Third, the current wallet version number is reported in getinfo.

12 years agoMerge pull request #946 from luke-jr/bugfix_rm_mingw
Gavin Andresen [Thu, 22 Mar 2012 18:14:02 +0000]
Merge pull request #946 from luke-jr/bugfix_rm_mingw

Move QMAKE_LIBS_QT_ENTRY adjustment to bitcoin side of build

12 years agoMove QMAKE_LIBS_QT_ENTRY adjustment to bitcoin side of build
Luke Dashjr [Sat, 17 Mar 2012 23:54:22 +0000]
Move QMAKE_LIBS_QT_ENTRY adjustment to bitcoin side of build

It could just as well be on either part of the gitian build, but to safely put it on the Qt side would require bumping the filename, and every gitian user rebuilding it.
v0.5.3.1 put it on the Bitcoin side, and this is easier to work with and keep safe, so I'm moving it.

Use `qmake MINGW_THREAD_BUGFIX=0` to disable

12 years agoMerge branch 'checklevel' of https://github.com/sipa/bitcoin
Gavin Andresen [Thu, 22 Mar 2012 16:18:56 +0000]
Merge branch 'checklevel' of https://github.com/sipa/bitcoin

12 years agoMerge pull request #975 from sipa/versioncheck
Gavin Andresen [Thu, 22 Mar 2012 16:18:11 +0000]
Merge pull request #975 from sipa/versioncheck

Check minversion before loading the rest of the wallet