novacoin.git
12 years agoFix loop index var types, fixing many minor sign comparison warnings
Jeff Garzik [Sun, 15 Apr 2012 20:52:09 +0000]
Fix loop index var types, fixing many minor sign comparison warnings

foo.size() typically returns an unsigned integral type; make loop variables
match those types' signedness.

12 years agoMerge branch '0.5.x' into 0.6.0.x
Luke Dashjr [Mon, 16 Apr 2012 01:15:48 +0000]
Merge branch '0.5.x' into 0.6.0.x

Conflicts:
src/qt/bitcoin.cpp
src/qt/bitcoingui.cpp
src/qt/guiutil.cpp
src/qt/guiutil.h
src/qt/sendcoinsdialog.cpp
src/qt/sendcoinsdialog.h
src/util.cpp

12 years agoMerge branch '0.5.0.x' into 0.5.x
Luke Dashjr [Mon, 16 Apr 2012 01:06:10 +0000]
Merge branch '0.5.0.x' into 0.5.x

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Mon, 16 Apr 2012 01:05:54 +0000]
Merge branch '0.4.x' into 0.5.0.x

Conflicts:
src/keystore.h

12 years agofix warnings: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses]
Wladimir J. van der Laan [Sun, 15 Apr 2012 11:27:00 +0000]
fix warnings: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses]

12 years agofix warnings: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses]
Wladimir J. van der Laan [Sun, 15 Apr 2012 11:27:00 +0000]
fix warnings: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses]

12 years agofix warnings: '&&' within '||' [-Wlogical-op-parentheses]
Wladimir J. van der Laan [Sun, 15 Apr 2012 11:03:28 +0000]
fix warnings: '&&' within '||' [-Wlogical-op-parentheses]

12 years agofix warnings: delete called on 'XX' that has virtual functions but non-virtual destru...
Wladimir J. van der Laan [Sun, 15 Apr 2012 10:59:20 +0000]
fix warnings: delete called on 'XX' that has virtual functions but non-virtual destructor [-Wdelete-non-virtual-dtor]

12 years agofix warnings: unused variable 'XX' [-Wunused-variable]
Wladimir J. van der Laan [Sun, 15 Apr 2012 10:53:14 +0000]
fix warnings: unused variable 'XX' [-Wunused-variable]

12 years agofix warnings: unused variable 'XX' [-Wunused-variable]
Wladimir J. van der Laan [Sun, 15 Apr 2012 10:53:14 +0000]
fix warnings: unused variable 'XX' [-Wunused-variable]

12 years agofix warnings: enumeration values 'XX' not handled in switch [-Wswitch-enum]
Wladimir J. van der Laan [Sun, 15 Apr 2012 10:42:52 +0000]
fix warnings: enumeration values 'XX' not handled in switch [-Wswitch-enum]

12 years agofix warnings: 'XX' defined as a struct here but previously declared as a class [...
Wladimir J. van der Laan [Sun, 15 Apr 2012 10:31:56 +0000]
fix warnings: 'XX' defined as a struct here but previously declared as a class [-Wmismatched-tags]

12 years agofix warnings: array subscript is of type 'char' [-Wchar-subscripts]
Wladimir J. van der Laan [Sun, 15 Apr 2012 10:22:30 +0000]
fix warnings: array subscript is of type 'char' [-Wchar-subscripts]

12 years agofix warnings: array subscript is of type 'char' [-Wchar-subscripts]
Wladimir J. van der Laan [Sun, 15 Apr 2012 10:22:30 +0000]
fix warnings: array subscript is of type 'char' [-Wchar-subscripts]

12 years agowork around issue in boost::program_options that prevents from compiling in clang
Wladimir J. van der Laan [Sun, 15 Apr 2012 09:42:40 +0000]
work around issue in boost::program_options that prevents from compiling in clang

12 years agoCBitcoinSecret::SetString() now calls IsValid() to make sure it was passed something...
Chris Moore [Thu, 12 Apr 2012 20:13:08 +0000]
CBitcoinSecret::SetString() now calls IsValid() to make sure it was passed something with the correct version.

12 years agoShow a message box when runaway exception happens
Wladimir J. van der Laan [Sat, 14 Apr 2012 07:41:05 +0000]
Show a message box when runaway exception happens

This is more clear to users than when the program simply disappears (usually during initialization). It still logs the message to the console and debug log as well.

12 years agoMerge commit 'e962c7f' into 0.5.0.x
Luke Dashjr [Sun, 15 Apr 2012 17:23:43 +0000]
Merge commit 'e962c7f' into 0.5.0.x

12 years agoBugfix: nTotalBlocks wasn't in 0.5.0, so need to replace it with equivalent function...
Luke Dashjr [Sun, 15 Apr 2012 17:23:34 +0000]
Bugfix: nTotalBlocks wasn't in 0.5.0, so need to replace it with equivalent function call in backport

12 years agoBump version to 0.6.0.7
Luke Dashjr [Sun, 15 Apr 2012 17:08:21 +0000]
Bump version to 0.6.0.7

Skipping 0.6.0.1 through 0.6.0.6 since the internal version for 0.6.0[.0] was in fact 0.6.0.6

12 years agoBugfix: Check that QRcode_encodeString didn't return NULL (error)
Luke Dashjr [Sun, 15 Apr 2012 01:00:27 +0000]
Bugfix: Check that QRcode_encodeString didn't return NULL (error)

Without this, any error will segfault Bitcoin-Qt

12 years agoAdd symlink to scripts/qt/make_windows_icon.sh from old file name, just in case
Luke Dashjr [Sat, 14 Apr 2012 19:38:26 +0000]
Add symlink to scripts/qt/make_windows_icon.sh from old file name, just in case

12 years agoRename make_windows_icon.py to .sh as it is a shell script (fixes #1099)
Wladimir J. van der Laan [Sat, 14 Apr 2012 16:32:30 +0000]
Rename make_windows_icon.py to .sh as it is a shell script (fixes #1099)

12 years agoDo not show green tick unless all known blocks are downloaded (fixes #921)
Wladimir J. van der Laan [Sat, 14 Apr 2012 06:21:22 +0000]
Do not show green tick unless all known blocks are downloaded (fixes #921)

12 years agoAdd missing tooltip and key shortcut in settings dialog (#1088 without line break...
Wladimir J. van der Laan [Fri, 13 Apr 2012 07:16:46 +0000]
Add missing tooltip and key shortcut in settings dialog (#1088 without line break part)

12 years agoBug fix listtransactions from/count handling.
Gavin Andresen [Thu, 5 Apr 2012 00:56:13 +0000]
Bug fix listtransactions from/count handling.

12 years agoDisplay an error, rather than crashing, if encoding a QR Code failed.
Luke Dashjr [Sat, 14 Apr 2012 19:27:12 +0000]
Display an error, rather than crashing, if encoding a QR Code failed.

(master workaround in b1a99c3a1fb2613e9c7cecd565e8cc604b03eb6f + 7261945eb5f64423d47a5bff63ecd8b65d88b8ed)

12 years agoremoved (no label) string if we have NO label
Philip Kaufmann [Wed, 11 Apr 2012 12:21:15 +0000]
removed (no label) string if we have NO label

(partial of 9e0dba8c17eb6507083b4d7602541c25f1fd7f38)

12 years agoShow error message instead of exception crash when unable to bind RPC port
Wladimir J. van der Laan [Thu, 5 Apr 2012 18:36:27 +0000]
Show error message instead of exception crash when unable to bind RPC port

Fixes issue #875

12 years agoAdded comment lines in French & Turkish which basically mean "Bitcoin, virtual P2P...
cardpuncher [Mon, 9 Apr 2012 19:22:38 +0000]
Added comment lines in French & Turkish which basically mean "Bitcoin, virtual P2P cryptocurrency".

12 years agoMerge branch '0.5.0.x' into 0.5.x
Luke Dashjr [Fri, 6 Apr 2012 21:45:20 +0000]
Merge branch '0.5.0.x' into 0.5.x

12 years agoBugfix: Windows lacks sleep(), so need to use Sleep() from util.h
Luke Dashjr [Fri, 6 Apr 2012 21:44:26 +0000]
Bugfix: Windows lacks sleep(), so need to use Sleep() from util.h

12 years agoMerge branch '0.5.0.x' into 0.5.x
Luke Dashjr [Fri, 6 Apr 2012 20:34:34 +0000]
Merge branch '0.5.0.x' into 0.5.x

Conflicts:
src/qt/notificator.h

12 years agoProper support for Growl 1.3 notifications
p2k [Mon, 12 Mar 2012 13:20:55 +0000]
Proper support for Growl 1.3 notifications

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 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 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 branch 'strlcpy_attribute' into 0.5.0.x
Luke Dashjr [Thu, 5 Apr 2012 23:43:06 +0000]
Merge branch 'strlcpy_attribute' into 0.5.0.x

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 branch '0.5.x' into 0.6.0.x
Luke Dashjr [Thu, 5 Apr 2012 22:22:47 +0000]
Merge branch '0.5.x' into 0.6.0.x

Conflicts:
src/keystore.cpp

12 years agoMerge branch '0.5.0.x' into 0.5.x
Luke Dashjr [Thu, 5 Apr 2012 22:21:01 +0000]
Merge branch '0.5.0.x' into 0.5.x

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Thu, 5 Apr 2012 22:20:18 +0000]
Merge branch '0.4.x' into 0.5.0.x

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 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 agoAdd laanwj to gitian download scripts.
Matt Corallo [Fri, 16 Dec 2011 20:04:43 +0000]
Add laanwj to gitian download scripts.

12 years agoAdd laanwj to gitian download scripts.
Matt Corallo [Fri, 16 Dec 2011 20:04:43 +0000]
Add laanwj to gitian download scripts.

12 years agoMerge branch '0.5.x' into 0.6.0.x
Luke Dashjr [Wed, 4 Apr 2012 19:43:29 +0000]
Merge branch '0.5.x' into 0.6.0.x

Conflicts:
src/bitcoinrpc.cpp

12 years agoMerge branch '0.5.0.x' into 0.5.x
Luke Dashjr [Wed, 4 Apr 2012 19:41:07 +0000]
Merge branch '0.5.0.x' into 0.5.x

Conflicts:
src/qt/bitcoingui.h

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Wed, 4 Apr 2012 19:36:25 +0000]
Merge branch '0.4.x' into 0.5.0.x

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

(plus part of 7cfbe1fee465e82ddbdc8ed17dfcce791bd765f5)

12 years agoMerge branch '0.5.x' into 0.6.0.x
Luke Dashjr [Wed, 4 Apr 2012 14:32:09 +0000]
Merge branch '0.5.x' into 0.6.0.x

Conflicts:
bitcoin-qt.pro
contrib/debian/changelog
doc/README
doc/README_windows.txt
doc/translation_process.md
share/setup.nsi
src/bitcoinrpc.cpp
src/db.cpp
src/init.cpp
src/irc.cpp
src/main.cpp
src/main.h
src/makefile.osx
src/makefile.unix
src/net.cpp
src/net.h
src/qt/bitcoin.cpp
src/qt/bitcoingui.cpp
src/qt/bitcoinstrings.cpp
src/qt/guiutil.cpp
src/qt/guiutil.h
src/qt/locale/bitcoin_da.ts
src/qt/locale/bitcoin_de.ts
src/qt/locale/bitcoin_en.ts
src/qt/locale/bitcoin_es.ts
src/qt/locale/bitcoin_es_CL.ts
src/qt/locale/bitcoin_hu.ts
src/qt/locale/bitcoin_it.ts
src/qt/locale/bitcoin_nb.ts
src/qt/locale/bitcoin_nl.ts
src/qt/locale/bitcoin_pt_BR.ts
src/qt/locale/bitcoin_ru.ts
src/qt/locale/bitcoin_uk.ts
src/qt/locale/bitcoin_zh_CN.ts
src/qt/locale/bitcoin_zh_TW.ts
src/qt/sendcoinsdialog.h
src/qt/transactionrecord.cpp
src/script.cpp
src/script.h
src/serialize.h
src/util.cpp
src/util.h

12 years agoMerge branch '0.5.0.x' into 0.5.x
Luke Dashjr [Wed, 4 Apr 2012 14:30:32 +0000]
Merge branch '0.5.0.x' into 0.5.x

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 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 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 agoUpdated my GPG key
Pieter Wuille [Mon, 26 Mar 2012 20:12:25 +0000]
Updated my GPG key

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

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Wed, 4 Apr 2012 14:10:16 +0000]
Merge branch '0.4.x' into 0.5.0.x

Conflicts:
src/main.cpp
src/makefile.unix

12 years agoFix script tests for P2SH
Luke Dashjr [Wed, 4 Apr 2012 13:35:22 +0000]
Fix script tests for P2SH

Upstream: 922e8e2929a2e78270868385aa46f96002fbcff3

12 years agoFix testing setup
Vegard Nossum [Sun, 31 Jul 2011 18:00:38 +0000]
Fix testing setup

There were some problems with the existing testing setup:

 - Makefile rules for test-file compilation used CFLAGS instead of
   CXXFLAGS in makefile.unix

12 years agoDo not invoke anti-DoS system for invalid BIP16 transactions
Pieter Wuille [Sat, 25 Feb 2012 18:02:30 +0000]
Do not invoke anti-DoS system for invalid BIP16 transactions

Doing so would allow an attack on old nodes, which would relay a
standard transaction spending a BIP16 output in an invalid way,
until reaching a new node, which will disconnect their peer.

Reported by makomk on IRC.

12 years agoMerge branch '0.5.0.x' into 0.5.x
Luke Dashjr [Mon, 2 Apr 2012 13:37:09 +0000]
Merge branch '0.5.0.x' into 0.5.x

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 agoMerge branch 'vfycompsig_0.5.0' into 0.5.0.x
Luke Dashjr [Wed, 28 Mar 2012 00:10:46 +0000]
Merge branch 'vfycompsig_0.5.0' into 0.5.0.x

12 years agoMinimal support for compressed-key signature recovery (for verifymessage)
Luke Dashjr [Wed, 28 Mar 2012 00:03:28 +0000]
Minimal support for compressed-key signature recovery (for verifymessage)

Upstream commits:
11529c6e4f7288d8a64c488a726ee3821c7adefe
d4d9c734c315e99136fe245c5733ca75cab9f8bf

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

12 years agoMerge branch '0.5.0.x' into 0.5.x
Luke Dashjr [Tue, 27 Mar 2012 00:07:28 +0000]
Merge branch '0.5.0.x' into 0.5.x

12 years agoMerge branch '0.4.x' into 0.5.0.x
Luke Dashjr [Tue, 27 Mar 2012 00:06:55 +0000]
Merge branch '0.4.x' into 0.5.0.x

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 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 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.