]>
Git Repo - VerusCoin.git/log
Drak [Sat, 7 Jun 2014 11:57:58 +0000 (12:57 +0100)]
Fix compiler warnings
Fixes the following compiler warning
```
miner.cpp: In constructor ‘COrphan::COrphan(const CTransaction*)’:
miner.cpp:69:14: warning: ‘COrphan::feeRate’ will be initialized after [-Wreorder]
CFeeRate feeRate;
^
miner.cpp:68:12: warning: ‘double COrphan::dPriority’ [-Wreorder]
double dPriority;
^
miner.cpp:71:5: warning: when initialized here [-Wreorder]
COrphan(const CTransaction* ptxIn) : ptx(ptxIn), feeRate(0), dPriority(0)
```
Wladimir J. van der Laan [Fri, 6 Jun 2014 17:28:34 +0000 (19:28 +0200)]
qt: Periodic translation update
Wladimir J. van der Laan [Fri, 6 Jun 2014 16:54:47 +0000 (18:54 +0200)]
Merge pull request #4295
6e7c4d1 gitian: upgrade OpenSSL to 1.0.1h (Wladimir J. van der Laan)
Wladimir J. van der Laan [Fri, 6 Jun 2014 16:50:32 +0000 (18:50 +0200)]
Merge pull request #3959
171ca77 estimatefee / estimatepriority RPC methods (Gavin Andresen)
0193fb8 Allow multiple regression tests to run at once (Gavin Andresen)
c6cb21d Type-safe CFeeRate class (Gavin Andresen)
Gavin Andresen [Mon, 17 Mar 2014 12:19:54 +0000 (08:19 -0400)]
estimatefee / estimatepriority RPC methods
New RPC methods: return an estimate of the fee (or priority) a
transaction needs to be likely to confirm in a given number of
blocks.
Mike Hearn created the first version of this method for estimating fees.
It works as follows:
For transactions that took 1 to N (I picked N=25) blocks to confirm,
keep N buckets with at most 100 entries in each recording the
fees-per-kilobyte paid by those transactions.
(separate buckets are kept for transactions that confirmed because
they are high-priority)
The buckets are filled as blocks are found, and are saved/restored
in a new fee_estiamtes.dat file in the data directory.
A few variations on Mike's initial scheme:
To estimate the fee needed for a transaction to confirm in X buckets,
all of the samples in all of the buckets are used and a median of
all of the data is used to make the estimate. For example, imagine
25 buckets each containing the full 100 entries. Those 2,500 samples
are sorted, and the estimate of the fee needed to confirm in the very
next block is the 50'th-highest-fee-entry in that sorted list; the
estimate of the fee needed to confirm in the next two blocks is the
150'th-highest-fee-entry, etc.
That algorithm has the nice property that estimates of how much fee
you need to pay to get confirmed in block N will always be greater
than or equal to the estimate for block N+1. It would clearly be wrong
to say "pay 11 uBTC and you'll get confirmed in 3 blocks, but pay
12 uBTC and it will take LONGER".
A single block will not contribute more than 10 entries to any one
bucket, so a single miner and a large block cannot overwhelm
the estimates.
Gavin Andresen [Fri, 14 Mar 2014 16:19:52 +0000 (12:19 -0400)]
Allow multiple regression tests to run at once
Choose ports at startup based on PID, so multiple regression tests
can run on the same system at the same time.
Gavin Andresen [Thu, 10 Apr 2014 18:14:18 +0000 (14:14 -0400)]
Type-safe CFeeRate class
Use CFeeRate instead of an int64_t for quantities that are
fee-per-size.
Helps prevent unit-conversion mismatches between the wallet,
relaying, and mining code.
Wladimir J. van der Laan [Fri, 6 Jun 2014 08:09:09 +0000 (10:09 +0200)]
Merge pull request #4297
b917555 qt: PeerTableModel: Fix potential deadlock. #4296 (Ashley Holman)
Ashley Holman [Fri, 6 Jun 2014 07:24:59 +0000 (02:24 -0500)]
qt: PeerTableModel: Fix potential deadlock. #4296
Wladimir J. van der Laan [Fri, 6 Jun 2014 05:23:45 +0000 (07:23 +0200)]
Merge pull request #4241
efe6888 build: fix version dependency (Cory Fields)
f4d8112 build: quit abusing AM_CPPFLAGS (Cory Fields)
56c157d build: avoid the use of top_ and abs_ dir paths (Cory Fields)
70c71c5 build: Tidy up file generation output (Cory Fields)
6b9f0d5 build: nuke Makefile.include from orbit (Cory Fields)
8b09ef7 build: add stub makefiles for easier subdir builds (Cory Fields)
be4e9ae build: delete old Makefile.am's (Cory Fields)
65e8ba4 build: Switch to non-recursive make (Cory Fields)
Cory Fields [Thu, 5 Jun 2014 19:51:05 +0000 (15:51 -0400)]
build: fix version dependency
Cory Fields [Thu, 5 Jun 2014 19:24:48 +0000 (15:24 -0400)]
build: quit abusing AM_CPPFLAGS
Now that the build is non-recursive, adding to AM_CPPFLAGS means adding to
_all_ cppflags.
Logical groups of includes have been added instead, and are used individually
by various targets.
Cory Fields [Thu, 5 Jun 2014 18:22:54 +0000 (14:22 -0400)]
build: avoid the use of top_ and abs_ dir paths
Using them has the side effect of confusing the dependency-tracking logic.
Cory Fields [Thu, 5 Jun 2014 18:17:50 +0000 (14:17 -0400)]
build: Tidy up file generation output
- Some file generation was still noisy, silence it.
- AM_V_GEN is used rather than @ so that 'make V=1' works as intended
- Cut down on file copies and moves when using sed, use pipes instead
- Avoid the use of top_ and abs_ dirs where possible
Cory Fields [Wed, 4 Jun 2014 21:13:03 +0000 (17:13 -0400)]
build: nuke Makefile.include from orbit
Rules and targets no longer need to be shared between subdirectories, so
this is no longer needed.
Cory Fields [Wed, 28 May 2014 17:41:35 +0000 (13:41 -0400)]
build: add stub makefiles for easier subdir builds
Cory Fields [Wed, 28 May 2014 17:40:35 +0000 (13:40 -0400)]
build: delete old Makefile.am's
Cory Fields [Wed, 28 May 2014 17:38:41 +0000 (13:38 -0400)]
build: Switch to non-recursive make
Build logic moves from individual Makefile.am's to include files, which
the main src/Makefile.am includes. This avoids having to manage a gigantic
single Makefile.
TODO: Move the rules from the old Makefile.include to where they actually
belong and nuke the old file.
Wladimir J. van der Laan [Thu, 5 Jun 2014 13:44:35 +0000 (15:44 +0200)]
gitian: upgrade OpenSSL to 1.0.1h
Upgrade for https://www.openssl.org/news/secadv_20140605.txt
Just in case - there is no vulnerability that affects ecdsa signing or
verification.
The MITM attack vulnerability (CVE-2014-0224) may have some effect on
our usage of SSL/TLS.
As long as payment requests are signed (which is the common case), usage
of the payment protocol should also not be affected.
The TLS usage in RPC may be at risk for MITM attacks. If you have
`-rpcssl` enabled, be sure to update OpenSSL as soon as possible.
Jeff Garzik [Thu, 5 Jun 2014 13:09:50 +0000 (09:09 -0400)]
Merge pull request #4294 from laanwj/2014_06_no_global_strwallet
Remove global strWalletFile
Wladimir J. van der Laan [Thu, 5 Jun 2014 12:52:07 +0000 (14:52 +0200)]
Remove global strWalletFile
As it says on the tin. There is no need to have this variable be
global, it's only used in AppInit2.
Wladimir J. van der Laan [Thu, 5 Jun 2014 05:00:16 +0000 (07:00 +0200)]
Fix GUI build with `--disable-wallet`
fe6bff2 and
65f78a1 broke it. Minor build changes.
Wladimir J. van der Laan [Thu, 5 Jun 2014 04:21:36 +0000 (06:21 +0200)]
Merge pull request #4291
fe6bff2 [Qt] add BerkeleyDB version info to RPCConsole (Philip Kaufmann)
Gavin Andresen [Thu, 5 Jun 2014 00:15:45 +0000 (20:15 -0400)]
Merge pull request #4287 from laanwj/2014_06_sideeffect
Remove side effect in assertion in ProcessGetData
Gavin Andresen [Thu, 5 Jun 2014 00:13:50 +0000 (20:13 -0400)]
Merge pull request #4289 from Diapolo/log_config_file
log used config file to debug.log on startup
Philip Kaufmann [Wed, 4 Jun 2014 20:00:59 +0000 (22:00 +0200)]
[Qt] add BerkeleyDB version info to RPCConsole
- to match info function between debug.log and RPCConsole
Philip Kaufmann [Wed, 4 Jun 2014 19:19:22 +0000 (21:19 +0200)]
log used config file to debug.log on startup
Wladimir J. van der Laan [Wed, 4 Jun 2014 19:12:44 +0000 (21:12 +0200)]
Merge pull request #4270
1411a51 doc: Update hash in release process for new windows deps intermediate (Wladimir J. van der Laan)
386e732 gitian: make linux qt intermediate deterministic (Wladimir J. van der Laan)
Jeff Garzik [Wed, 4 Jun 2014 19:00:58 +0000 (15:00 -0400)]
Merge pull request #4282 from jgarzik/fix-wallet-init
CWallet: fix nTimeFirstKey init, by making constructor init common code
Jeff Garzik [Wed, 4 Jun 2014 19:00:38 +0000 (15:00 -0400)]
Merge pull request #4247 from Diapolo/listen
rename fNoListen to fListen and move to net
Wladimir J. van der Laan [Wed, 4 Jun 2014 17:30:19 +0000 (19:30 +0200)]
Merge pull request #4258
7b45d94 Make max number of orphan blocks kept in memory a startup parameter (fixes #4253) (shshshsh)
Wladimir J. van der Laan [Wed, 4 Jun 2014 17:26:26 +0000 (19:26 +0200)]
Merge pull request #4260
aab2c0f Remove template matching params from GetOpName() (Huang Le)
Wladimir J. van der Laan [Wed, 4 Jun 2014 10:27:44 +0000 (12:27 +0200)]
Remove side effect in assertion in ProcessGetData
A side-effect was introduced into an assertion in
7a0e84d . This commit
fixes that.
shshshsh [Fri, 30 May 2014 12:35:23 +0000 (12:35 +0000)]
Make max number of orphan blocks kept in memory a startup parameter (fixes #4253)
Wladimir J. van der Laan [Wed, 4 Jun 2014 06:50:27 +0000 (08:50 +0200)]
Merge pull request #4223
06a91d9 VerifyDB progress (Cozz Lovan)
Jeff Garzik [Tue, 3 Jun 2014 16:55:33 +0000 (12:55 -0400)]
CWallet: fix nTimeFirstKey init, by making constructor init common code
Don't repeat yourself etc.
Wladimir J. van der Laan [Tue, 3 Jun 2014 14:32:59 +0000 (16:32 +0200)]
Merge pull request #4279
a98b870 Some documentation fixes + link to my Docker/LXC guide (Giuseppe Mazzotta)
Giuseppe Mazzotta [Tue, 3 Jun 2014 09:40:24 +0000 (11:40 +0200)]
Some documentation fixes + link to my Docker/LXC guide
I added a link to my guide about using docker containers + LXC (I am planning to maintain this at work
for future bitcoin versions), then I mentioned other virtualization options (KVM, LXC).
This commit includes a fix issue for documentation issue #4269 that consists in telling users to
checkout correct bitcoin version before using the gitian descriptors (otherwise all hell can break loose).
Also, I replaced URL for Debian 7.4 ISO with a correct one and added link to official Debian ISO sources.
Wladimir J. van der Laan [Tue, 3 Jun 2014 13:28:35 +0000 (15:28 +0200)]
Merge pull request #4280
bbe1925 [Qt] style police and small addition in rpcconsole (Philip Kaufmann)
Cozz Lovan [Fri, 23 May 2014 16:04:09 +0000 (18:04 +0200)]
VerifyDB progress
Philip Kaufmann [Tue, 3 Jun 2014 12:42:20 +0000 (14:42 +0200)]
[Qt] style police and small addition in rpcconsole
- fix spaces, indentation and coding style glitches
Wladimir J. van der Laan [Tue, 3 Jun 2014 08:59:53 +0000 (10:59 +0200)]
Merge pull request #4225
65f78a1 Qt: Add GUI view of peer information. #4133 (Ashley Holman)
Ashley Holman [Fri, 23 May 2014 17:09:59 +0000 (12:09 -0500)]
Qt: Add GUI view of peer information. #4133
Wladimir J. van der Laan [Tue, 3 Jun 2014 06:54:17 +0000 (08:54 +0200)]
Merge pull request #4273
91855f2 Properly initialize CWallet::nTimeFirstKey (tm314159)
tm314159 [Mon, 2 Jun 2014 18:32:33 +0000 (11:32 -0700)]
Properly initialize CWallet::nTimeFirstKey
Wladimir J. van der Laan [Mon, 2 Jun 2014 16:00:21 +0000 (18:00 +0200)]
Merge pull request #3837
75ebced added many rpc wallet tests (Alon Muroch)
Wladimir J. van der Laan [Mon, 2 Jun 2014 15:59:02 +0000 (17:59 +0200)]
Merge pull request #3683
bdc83e8 [Qt] ensure payment request network matches client network (Philip Kaufmann)
Wladimir J. van der Laan [Mon, 2 Jun 2014 13:14:03 +0000 (15:14 +0200)]
Merge pull request #4213
516053c Make links on 'About Bitcoin Core' into clickable (squashed 5 comits into one) (Tawanda Kembo)
Wladimir J. van der Laan [Mon, 2 Jun 2014 12:59:47 +0000 (14:59 +0200)]
Merge pull request #4238
b90711c [Qt] Fix Transaction details shows wrong To: (Cozz Lovan)
Wladimir J. van der Laan [Mon, 2 Jun 2014 12:25:03 +0000 (14:25 +0200)]
Merge pull request #4261
09a54a6 Use pnode->nLastRecv as sync score directly (Huang Le)
Wladimir J. van der Laan [Mon, 2 Jun 2014 09:01:02 +0000 (11:01 +0200)]
doc: Update hash in release process for new windows deps intermediate
This was forgotten in
25d4911 .
Wladimir J. van der Laan [Mon, 2 Jun 2014 08:54:15 +0000 (10:54 +0200)]
Merge pull request #4268
223a6f7 Fix stray uppercase A in tx_valid.json. (Andreas Schildbach)
Wladimir J. van der Laan [Mon, 2 Jun 2014 07:14:23 +0000 (09:14 +0200)]
gitian: make linux qt intermediate deterministic
A qt installation date snuck into the host utils (lrelease etc)
This doesn't affect the end product, so no dependency version bump.
It also doesn't explain why gavin's and mine build is different
Tawanda Kembo [Thu, 22 May 2014 11:19:51 +0000 (13:19 +0200)]
Make links on 'About Bitcoin Core' into clickable (squashed 5 comits into one)
Made the following links clickable:
http://www.opensource.org/licenses/mit-license.php
http://www.openssl.org/
[email protected]
(Squashed commits into one commit as suggested by @laanwj)
Replaced label with text browser on About Bitcoin Core Screen
So that the links on the About screen can be clickable
Replaced html property with text property
I have now removed unnecessary html so this should make life easier for
translators and you @Diapolo :). What do you think?
The size of the window needs to change
The size of the window needs to change when you make links clickable.
Thanks for pointing that out @laanwj
Using the https://www.openssl.org over the http link
Using the https://www.openssl.org over the http link as suggested by
@Diapolo
Wladimir J. van der Laan [Sun, 1 Jun 2014 14:25:02 +0000 (16:25 +0200)]
Periodic language update
Pull updated translations from Transifex before 0.9.2
Andreas Schildbach [Sun, 1 Jun 2014 13:25:21 +0000 (15:25 +0200)]
Fix stray uppercase A in tx_valid.json.
Wladimir J. van der Laan [Sun, 1 Jun 2014 07:52:51 +0000 (09:52 +0200)]
Merge pull request #4257
5823449 Limit number of known addresses per peer (Pieter Wuille)
Wladimir J. van der Laan [Sun, 1 Jun 2014 07:25:06 +0000 (09:25 +0200)]
Merge pull request #4264
cb7a3ed remove dup of extern int nConnectTimeout; in netbase (Philip Kaufmann)
Philip Kaufmann [Sat, 31 May 2014 10:04:34 +0000 (12:04 +0200)]
remove dup of extern int nConnectTimeout; in netbase
Huang Le [Fri, 30 May 2014 17:23:53 +0000 (01:23 +0800)]
Remove template matching params from GetOpName()
Since they are not real opcodes, being reported as OP_UNKNOWN is less confusing for human-readable decoding.
Signed-off-by: Huang Le <[email protected] >
Huang Le [Fri, 30 May 2014 15:44:44 +0000 (23:44 +0800)]
Use pnode->nLastRecv as sync score directly
NodeSyncScore() should find the node which we recv data most recently, so put a negative sign to pnode->nLastRecv is indeed wrong.
Also change the return value type to int64_t.
Signed-off-by: Huang Le <[email protected] >
Wladimir J. van der Laan [Fri, 30 May 2014 15:02:44 +0000 (17:02 +0200)]
Merge pull request #4218
4665b1a doc: Clarify wording about testing in README.md (Wladimir J. van der Laan)
Pieter Wuille [Fri, 30 May 2014 10:01:20 +0000 (12:01 +0200)]
Limit number of known addresses per peer
Wladimir J. van der Laan [Fri, 30 May 2014 08:19:02 +0000 (10:19 +0200)]
Merge pull request #4252
c21c74b osx: Fix missing dock menu with qt5 (Cory Fields)
Wladimir J. van der Laan [Fri, 30 May 2014 08:07:40 +0000 (10:07 +0200)]
Merge pull request #4187
d16f6f8 Remove unused imports in macdeploy script (Federico Bond)
Cory Fields [Thu, 29 May 2014 19:30:46 +0000 (15:30 -0400)]
osx: Fix missing dock menu with qt5
Qt5 Removed the qt_mac_set_dock_menu function and left no replacement. It was
later re-added and deprecated for backwards-compatibility.
Qt5.2 adds the non-deprecated QMenu::setAsDockMenu(). Use that when possible.
Wladimir J. van der Laan [Thu, 29 May 2014 16:53:55 +0000 (18:53 +0200)]
Merge pull request #4249
b5ef85c No references to centralized databases in help text. (Pieter Wuille)
Gavin Andresen [Thu, 29 May 2014 16:51:14 +0000 (12:51 -0400)]
Fix name of Cory's pgp key
Gavin Andresen [Thu, 29 May 2014 16:42:58 +0000 (12:42 -0400)]
Merge pull request #4251 from theuni/cfields-pgp
gitian: Add cfields to gitian download scripts
Pieter Wuille [Thu, 29 May 2014 16:17:34 +0000 (18:17 +0200)]
No references to centralized databases in help text.
Cory Fields [Thu, 29 May 2014 16:13:02 +0000 (12:13 -0400)]
gitian: Add cfields to gitian download scripts
Wladimir J. van der Laan [Thu, 29 May 2014 13:55:10 +0000 (15:55 +0200)]
Merge pull request #4229
2869b13 release: Bump the OSX SDK to 10.7 for gitian builds (Cory Fields)
Philip Kaufmann [Thu, 29 May 2014 10:33:17 +0000 (12:33 +0200)]
rename fNoListen to fListen and move to net
- better code readability and it belongs to net
- this is a prerequisite for a pull to add -listen to the GUI
Wladimir J. van der Laan [Thu, 29 May 2014 09:45:54 +0000 (11:45 +0200)]
Merge pull request #4132
d4e1c61 add DEFAULT_UPNP constant in net (Philip Kaufmann)
Wladimir J. van der Laan [Thu, 29 May 2014 06:23:11 +0000 (08:23 +0200)]
Merge pull request #4245
066d9a5 [Qt] Fix Start bitcoin on system login (Cozz Lovan)
Cozz Lovan [Thu, 29 May 2014 03:21:58 +0000 (05:21 +0200)]
[Qt] Fix Start bitcoin on system login
Mathy Vanvoorden [Fri, 9 May 2014 10:52:08 +0000 (12:52 +0200)]
Spelling fix in comment
Rebased-By: Wladimir J. van der Laan <[email protected] >
Rebased-From:
3704a6a
Wladimir J. van der Laan [Wed, 28 May 2014 08:14:51 +0000 (10:14 +0200)]
Merge pull request #4195
f701da8 Doc: Always use absolute paths (Kosta Zertsekel)
Wladimir J. van der Laan [Wed, 28 May 2014 08:11:32 +0000 (10:11 +0200)]
Merge pull request #4184
122549f Fix incorrect checkpoint data for testnet3 (David Hill)
Cozz Lovan [Tue, 27 May 2014 23:38:40 +0000 (01:38 +0200)]
[Qt] Fix Transaction details shows wrong To:
Wladimir J. van der Laan [Tue, 27 May 2014 07:40:54 +0000 (09:40 +0200)]
Merge pull request #3861
9ec0306 Add CODESEPARATOR/FindAndDelete() tests (Peter Todd)
Wladimir J. van der Laan [Sun, 25 May 2014 14:20:21 +0000 (16:20 +0200)]
Merge pull request #4206
79d06dc Remove redundant c_str (R E Broadley)
Wladimir J. van der Laan [Sun, 25 May 2014 14:11:39 +0000 (16:11 +0200)]
Merge pull request #4183
f40dbee remove CPubKey::VerifyCompact( ) which is never used (Kamil Domanski)
28b6c1d remove GetMedianTime( ) which is never used (Kamil Domanski)
5bd4adc remove LookupHostNumeric( ) which is never used (Kamil Domanski)
595f691 remove LogException( ) which is never used (Kamil Domanski)
f4057cb remove CTransaction::IsNewerThan which is never used (Kamil Domanski)
0e31e56 remove CWallet::AddReserveKey which is never used (Kamil Domanski)
Wladimir J. van der Laan [Sun, 25 May 2014 08:47:17 +0000 (10:47 +0200)]
Merge pull request #4228
e9df7f8 Qt: Fix monospace font in osx 10.9 (Cory Fields)
Cory Fields [Sat, 24 May 2014 15:11:42 +0000 (11:11 -0400)]
release: Bump the OSX SDK to 10.7 for gitian builds
This fixes the display on Retina Macbooks. It also moves us away from depending
on the ancient XCode3 sdk.
Cory Fields [Sat, 24 May 2014 15:12:47 +0000 (11:12 -0400)]
Qt: Fix monospace font in osx 10.9
The "Monospace" hint was added in Qt 4.8, and it works as intended as opposed
to "TypeWriter" which fails to load a font.
Wladimir J. van der Laan [Sat, 24 May 2014 09:21:56 +0000 (11:21 +0200)]
Merge pull request #4222
cdb36ef Fix warning when compiling in OS X (Federico Bond)
Wladimir J. van der Laan [Fri, 23 May 2014 18:35:49 +0000 (20:35 +0200)]
doc: Add historical release notes for 0.9.1
Federico Bond [Fri, 23 May 2014 16:58:12 +0000 (13:58 -0300)]
Fix warning when compiling in OS X
Wladimir J. van der Laan [Fri, 23 May 2014 16:03:34 +0000 (18:03 +0200)]
Merge pull request #4220
c47f537 Add Tips and Tricks section to README (Gavin Andresen)
Wladimir J. van der Laan [Fri, 23 May 2014 15:54:57 +0000 (17:54 +0200)]
qt: Periodic language update
Last-minute language update before release 0.9.2.
Gavin Andresen [Fri, 23 May 2014 14:30:38 +0000 (10:30 -0400)]
Add Tips and Tricks section to README
Wladimir J. van der Laan [Fri, 23 May 2014 13:41:14 +0000 (15:41 +0200)]
Merge pull request #4152
3e8ac6a Replace non-threadsafe gmtime and setlocale (Wladimir J. van der Laan)
a60838d Replace non-threadsafe strerror (Wladimir J. van der Laan)
Wladimir J. van der Laan [Thu, 8 May 2014 16:01:10 +0000 (18:01 +0200)]
Replace non-threadsafe gmtime and setlocale
Make DateTimeStrFormat use boost::posix_time.
Also re-enable the util_DateTimeStrFormat tests, as they are no
longer platform specific.
Wladimir J. van der Laan [Fri, 23 May 2014 09:42:32 +0000 (11:42 +0200)]
Merge pull request #4212
d90491a Update test_main.cpp (LongShao007)
Wladimir J. van der Laan [Fri, 23 May 2014 08:03:07 +0000 (10:03 +0200)]
Merge pull request #4166
b641c9c Fix addnode "onetry": Connect with OpenNetworkConnection (Cozz Lovan)
Wladimir J. van der Laan [Fri, 23 May 2014 07:49:01 +0000 (09:49 +0200)]
doc: Clarify wording about testing in README.md
Weaken and clarify the wording a bit, it currently implies that we get
more pull requests than we can ever handle which discourages
contribution.
Wladimir J. van der Laan [Thu, 8 May 2014 12:15:19 +0000 (14:15 +0200)]
Replace non-threadsafe strerror
Log the name of the error as well as the error code if a network problem
happens. This makes network troubleshooting more convenient.
Use thread-safe strerror_r and the WIN32 equivalent FormatMessage.
LongShao007 [Thu, 22 May 2014 13:41:59 +0000 (21:41 +0800)]
Update test_main.cpp
i think should delete (#include "bitcoin-config.h")。
Wladimir J. van der Laan [Thu, 22 May 2014 11:05:04 +0000 (13:05 +0200)]
Remove forward declaration for non-existent class CCoinsDB
Found by stephenreed on #bitcoin.dev.
This page took 0.070046 seconds and 4 git commands to generate.