]> Git Repo - VerusCoin.git/log
VerusCoin.git
10 years agoFix compiler warnings
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)
```

10 years agoqt: Periodic translation update
Wladimir J. van der Laan [Fri, 6 Jun 2014 17:28:34 +0000 (19:28 +0200)]
qt: Periodic translation update

10 years agoMerge pull request #4295
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)

10 years agoMerge pull request #3959
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)

10 years agoestimatefee / estimatepriority RPC methods
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.

10 years agoAllow multiple regression tests to run at once
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.

10 years agoType-safe CFeeRate class
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.

10 years agoMerge pull request #4297
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)

10 years agoqt: PeerTableModel: Fix potential deadlock. #4296
Ashley Holman [Fri, 6 Jun 2014 07:24:59 +0000 (02:24 -0500)]
qt: PeerTableModel: Fix potential deadlock. #4296

10 years agoMerge pull request #4241
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)

10 years agobuild: fix version dependency
Cory Fields [Thu, 5 Jun 2014 19:51:05 +0000 (15:51 -0400)]
build: fix version dependency

10 years agobuild: quit abusing AM_CPPFLAGS
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.

10 years agobuild: avoid the use of top_ and abs_ dir paths
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.

10 years agobuild: Tidy up file generation output
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

10 years agobuild: nuke Makefile.include from orbit
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.

10 years agobuild: add stub makefiles for easier subdir builds
Cory Fields [Wed, 28 May 2014 17:41:35 +0000 (13:41 -0400)]
build: add stub makefiles for easier subdir builds

10 years agobuild: delete old Makefile.am's
Cory Fields [Wed, 28 May 2014 17:40:35 +0000 (13:40 -0400)]
build: delete old Makefile.am's

10 years agobuild: Switch to non-recursive make
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.

10 years agogitian: upgrade OpenSSL to 1.0.1h
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.

10 years agoMerge pull request #4294 from laanwj/2014_06_no_global_strwallet
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

10 years agoRemove 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.

10 years agoFix GUI build with `--disable-wallet`
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.

10 years agoMerge pull request #4291
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)

10 years agoMerge pull request #4287 from laanwj/2014_06_sideeffect
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

10 years agoMerge pull request #4289 from Diapolo/log_config_file
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

10 years ago[Qt] add BerkeleyDB version info to RPCConsole
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

10 years agolog used config file to debug.log on startup
Philip Kaufmann [Wed, 4 Jun 2014 19:19:22 +0000 (21:19 +0200)]
log used config file to debug.log on startup

10 years agoMerge pull request #4270
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)

10 years agoMerge pull request #4282 from jgarzik/fix-wallet-init
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

10 years agoMerge pull request #4247 from Diapolo/listen
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

10 years agoMerge pull request #4258
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)

10 years agoMerge pull request #4260
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)

10 years agoRemove side effect in assertion in ProcessGetData
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.

10 years agoMake max number of orphan blocks kept in memory a startup parameter (fixes #4253)
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)

10 years agoMerge pull request #4223
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)

10 years agoCWallet: fix nTimeFirstKey init, by making constructor init common code
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.

10 years agoMerge pull request #4279
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)

10 years agoSome documentation fixes + link to my Docker/LXC guide
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.

10 years agoMerge pull request #4280
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)

10 years agoVerifyDB progress
Cozz Lovan [Fri, 23 May 2014 16:04:09 +0000 (18:04 +0200)]
VerifyDB progress

10 years ago[Qt] style police and small addition in rpcconsole
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

10 years agoMerge pull request #4225
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)

10 years agoQt: Add GUI view of peer information. #4133
Ashley Holman [Fri, 23 May 2014 17:09:59 +0000 (12:09 -0500)]
Qt: Add GUI view of peer information. #4133

10 years agoMerge pull request #4273
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)

10 years agoProperly initialize CWallet::nTimeFirstKey
tm314159 [Mon, 2 Jun 2014 18:32:33 +0000 (11:32 -0700)]
Properly initialize CWallet::nTimeFirstKey

10 years agoMerge pull request #3837
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)

10 years agoMerge pull request #3683
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)

10 years agoMerge pull request #4213
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)

10 years agoMerge pull request #4238
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)

10 years agoMerge pull request #4261
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)

10 years agodoc: Update hash in release process for new windows deps intermediate
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.

10 years agoMerge pull request #4268
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)

10 years agogitian: make linux qt intermediate deterministic
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

10 years agoMake links on 'About Bitcoin Core' into clickable (squashed 5 comits into one)
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

10 years agoPeriodic language update
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

10 years agoFix stray uppercase A in tx_valid.json.
Andreas Schildbach [Sun, 1 Jun 2014 13:25:21 +0000 (15:25 +0200)]
Fix stray uppercase A in tx_valid.json.

10 years agoMerge pull request #4257
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)

10 years agoMerge pull request #4264
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)

10 years agoremove dup of extern int nConnectTimeout; in netbase
Philip Kaufmann [Sat, 31 May 2014 10:04:34 +0000 (12:04 +0200)]
remove dup of extern int nConnectTimeout; in netbase

10 years agoRemove template matching params from GetOpName()
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]>
10 years agoUse pnode->nLastRecv as sync score directly
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]>
10 years agoMerge pull request #4218
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)

10 years agoLimit number of known addresses per peer
Pieter Wuille [Fri, 30 May 2014 10:01:20 +0000 (12:01 +0200)]
Limit number of known addresses per peer

10 years agoMerge pull request #4252
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)

10 years agoMerge pull request #4187
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)

10 years agoosx: Fix missing dock menu with qt5
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.

10 years agoMerge pull request #4249
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)

10 years agoFix name of Cory's pgp key
Gavin Andresen [Thu, 29 May 2014 16:51:14 +0000 (12:51 -0400)]
Fix name of Cory's pgp key

10 years agoMerge pull request #4251 from theuni/cfields-pgp
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

10 years agoNo references to centralized databases in help text.
Pieter Wuille [Thu, 29 May 2014 16:17:34 +0000 (18:17 +0200)]
No references to centralized databases in help text.

10 years agogitian: Add cfields to gitian download scripts
Cory Fields [Thu, 29 May 2014 16:13:02 +0000 (12:13 -0400)]
gitian: Add cfields to gitian download scripts

10 years agoMerge pull request #4229
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)

10 years agorename fNoListen to fListen and move to net
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

10 years agoMerge pull request #4132
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)

10 years agoMerge pull request #4245
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)

10 years ago[Qt] Fix Start bitcoin on system login
Cozz Lovan [Thu, 29 May 2014 03:21:58 +0000 (05:21 +0200)]
[Qt] Fix Start bitcoin on system login

10 years agoSpelling fix in comment
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

10 years agoMerge pull request #4195
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)

10 years agoMerge pull request #4184
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)

10 years ago[Qt] Fix Transaction details shows wrong To:
Cozz Lovan [Tue, 27 May 2014 23:38:40 +0000 (01:38 +0200)]
[Qt] Fix Transaction details shows wrong To:

10 years agoMerge pull request #3861
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)

10 years agoMerge pull request #4206
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)

10 years agoMerge pull request #4183
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)

10 years agoMerge pull request #4228
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)

10 years agorelease: Bump the OSX SDK to 10.7 for gitian builds
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.

10 years agoQt: Fix monospace font in osx 10.9
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.

10 years agoMerge pull request #4222
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)

10 years agodoc: Add historical release notes for 0.9.1
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

10 years agoFix warning when compiling in OS X
Federico Bond [Fri, 23 May 2014 16:58:12 +0000 (13:58 -0300)]
Fix warning when compiling in OS X

10 years agoMerge pull request #4220
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)

10 years agoqt: Periodic language update
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.

10 years agoAdd Tips and Tricks section to README
Gavin Andresen [Fri, 23 May 2014 14:30:38 +0000 (10:30 -0400)]
Add Tips and Tricks section to README

10 years agoMerge pull request #4152
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)

10 years agoReplace non-threadsafe gmtime and setlocale
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.

10 years agoMerge pull request #4212
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)

10 years agoMerge pull request #4166
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)

10 years agodoc: Clarify wording about testing in README.md
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.

10 years agoReplace non-threadsafe strerror
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.

10 years agoUpdate test_main.cpp
LongShao007 [Thu, 22 May 2014 13:41:59 +0000 (21:41 +0800)]
Update test_main.cpp

i think should delete (#include "bitcoin-config.h")。

10 years agoRemove forward declaration for non-existent class CCoinsDB
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.