Wladimir J. van der Laan
60dc8e4208
Allow -onlynet=onion to be used
...
Just an alias for onlynet=tor, but matches the new name
of the proxy option -onion= better.
10 years ago
Wladimir J. van der Laan
1de2992e07
Merge pull request #4104
...
68aa01e
Fixes error (Ian Carroll)
10 years ago
Wladimir J. van der Laan
efec4ec6c5
Merge pull request #4593
...
d70bc52
Rework block processing benchmark code (Pieter Wuille)
10 years ago
Wladimir J. van der Laan
51cb546886
Merge pull request #4577
...
0c3e101
Added systemd .service file in order to help distributions integrate bitcoind. (Aitor Pazos)
10 years ago
Jeff Garzik
b45e782071
Merge branch '2014_07_remove_pyminer' of git://github.com/laanwj/bitcoin into merge-pyminer
10 years ago
Aitor Pazos
0c3e101966
Added systemd .service file in order to help distributions integrate bitcoind.
10 years ago
Jeff Garzik
6b5ee2e092
Update openssl.org URL to include https://
...
Suggested by whitj00. Fixes #4595
10 years ago
Wladimir J. van der Laan
4ad23d2110
Merge pull request #4559
...
2e7009d
Avoid querying DNS seeds, if we have open connections. (Jeff Garzik)
10 years ago
Jeff Garzik
2e7009d67b
Avoid querying DNS seeds, if we have open connections.
...
The goal is to increase independence and privacy.
10 years ago
Wladimir J. van der Laan
403c1bf0fb
contrib: remove getwork-based pyminer
...
As the `getwork` API doesn't exist anymore, currently this script is useless.
It would be nice to have a `getblocktemplate`-based Python example of a
miner, but there is no point in keeping this one around except to
confuse people.
10 years ago
Wladimir J. van der Laan
2920322871
Remove hopelessly outdated build-msw.md
...
Anyone building bitcoind/-qt on windows is welcome to contribute
a new one. The current information in this document is outdated,
or otherwise mostly worthless.
10 years ago
Wladimir J. van der Laan
f9de17ec2f
Add warning comment to getinfo
...
Warn that people should not add new information, or change current
information returned by getinfo.
10 years ago
Wladimir J. van der Laan
826d07101c
Merge pull request #4597
...
d817187
[Qt] remove ProxySocksVersion from OptionID (Philip Kaufmann)
10 years ago
Wladimir J. van der Laan
0449a17e41
Merge pull request #4541
...
125fba1
Add a new checkpoint at block 295,000 (Trevin Hofmann)
10 years ago
Philip Kaufmann
d817187bdb
[Qt] remove ProxySocksVersion from OptionID
...
- we only support SOCKS5, so remove it
10 years ago
Wladimir J. van der Laan
aaa7076937
Merge pull request #4531
...
ebdcc36
Add helptexts for -whitelist and rpc prioritisetransaction and switch to bitcoin instead of satoshis (Cozz Lovan)
10 years ago
Wladimir J. van der Laan
c5eabde9ea
Merge pull request #4491
...
eaedb59
net: add SetSocketNonBlocking() as OS independent wrapper (Philip Kaufmann)
10 years ago
Wladimir J. van der Laan
8d1477e1a2
Merge pull request #4586
...
f65352a
[Qt] small Qt-only include cleanup (Philip Kaufmann)
10 years ago
Pieter Wuille
d70bc52ee3
Rework block processing benchmark code
...
* Replace -benchmark (and the related fBenchmark) with a regular debug option, -debug=bench.
* Increase coverage and granularity of individual block processing steps.
* Add cummulative times.
10 years ago
Philip Kaufmann
f65352a7d0
[Qt] small Qt-only include cleanup
10 years ago
Wladimir J. van der Laan
3955c3940e
Merge pull request #4584
...
0430c30
Add missing FindNode prototype to net.h (Wladimir J. van der Laan)
10 years ago
Wladimir J. van der Laan
32235a3bb9
Merge pull request #4567
...
f469f79
remove an unneded .c_str() in OpenNetworkConnection() (Philip Kaufmann)
10 years ago
Clinton Christian
9192ca9e33
pyminer: Fix memory leak, refactor to be more pythonic, maintainable, and possibly faster
...
Pull #4483 .
Note that pyminer is not currently functional due to the removal of
getwork in cf0c47b
.
10 years ago
Wladimir J. van der Laan
93659379bd
Add comment about never updating nTimeOffset past 199 samples
...
Refer to issue #4521 for details.
10 years ago
Wladimir J. van der Laan
0430c30af1
Add missing FindNode prototype to net.h
...
Also make the argument a const std::string & instead of pass-by-value.
10 years ago
Wladimir J. van der Laan
70d0325999
Merge pull request #4496
...
5734d4d
Only remove actualy failed blocks from setBlockIndexValid (Pieter Wuille)
10 years ago
Wladimir J. van der Laan
7eb3d6152f
Merge pull request #4575
...
ad08d0b
Bugfix: make CCoinsViewMemPool support pruned entries in underlying cache (Pieter Wuille)
10 years ago
paveljanik
ab651b2d62
Fix typos in comments (missing i's).
10 years ago
Wladimir J. van der Laan
59abcefc2e
doc: remove any mention of SOCKS4
...
SOCKS4 support was removed in 0127a9b
, as well as the `-socks=` option.
10 years ago
Wladimir J. van der Laan
7bf8ab9dd3
Merge pull request #4556
...
29eaa31
ui: Make sure sendcoinsentry signals only connected once (Wladimir J. van der Laan)
2a05101
qt: Remove unused functions from BitcoinUnits (Wladimir J. van der Laan)
91cce17
qt: Use fixed-point arithmetic in amount spinbox (Wladimir J. van der Laan)
10 years ago
Wladimir J. van der Laan
29eaa31694
ui: Make sure sendcoinsentry signals only connected once
...
Move signal connections to constructor where possible.
10 years ago
Wladimir J. van der Laan
2a05101efd
qt: Remove unused functions from BitcoinUnits
...
Remove two functions that are now unused.
10 years ago
Wladimir J. van der Laan
91cce1732b
qt: Use fixed-point arithmetic in amount spinbox
...
Fixes various issues and cleans up code
- Fixes issue #4500 : Amount widget +/- has floating point rounding artifacts
- Amount box can now be emptied again, without clearing to 0
Also aligns the amount to the right, as in other places.
10 years ago
Pieter Wuille
ad08d0b95b
Bugfix: make CCoinsViewMemPool support pruned entries in underlying cache
10 years ago
Wladimir J. van der Laan
d5a3fd10e5
Merge pull request #4571
...
a7ec027
gitian: remove unneeded option after last commit (Cory Fields)
460b32d
build: fix broken boost chrono check on some platforms (Cory Fields)
10 years ago
Cory Fields
a7ec027311
gitian: remove unneeded option after last commit
10 years ago
Cory Fields
460b32d7b1
build: fix broken boost chrono check on some platforms
...
If clock_gettime is implemented outside of libc (librt in this case), configure
would fail when testing boost. Since clock_gettime is not present on all OSs,
boost only uses it when it can. Check for it in librt and add it to LIBS if
found, but don't fail if it's not (since boost won't be expecting it in this
case).
Also, reverse the link order as necessary for static libs.
Note that it's possible that there are other similar cases for boost, which may
be handled the same way.
10 years ago
Wladimir J. van der Laan
afa71fb3e3
Harmonize importprivkey and importaddress documentation
10 years ago
Philip Kaufmann
f469f79ff8
remove an unneded .c_str() in OpenNetworkConnection()
10 years ago
Wladimir J. van der Laan
cdb4193a31
Merge pull request #4557
...
92b8587
Update README.md (elkingtowa)
10 years ago
Wladimir J. van der Laan
3bc4fd955e
Merge pull request #4558
...
8f3f94a
Revert "CBloomFilter::clear() method" (Wladimir J. van der Laan)
98e84aa
Revert "Relay double-spends, subject to anti-DOS" (Wladimir J. van der Laan)
3015e0b
Revert "UI to alert of respend attempt affecting wallet." (Wladimir J. van der Laan)
39d3f2c
Revert "Add -respendnotify option and new RPC data" (Wladimir J. van der Laan)
680f725
Revert "Add release notes entry" (Wladimir J. van der Laan)
ad26dc9
Revert "Formatting, spelling, comment fixes." (Wladimir J. van der Laan)
cd057bf
Revert "Check signatures before respend relay" (Wladimir J. van der Laan)
67cc8f2
Revert "Remove signal DoubleSpendDetected, use function" (Wladimir J. van der Laan)
10 years ago
Wladimir J. van der Laan
8f3f94a470
Revert "CBloomFilter::clear() method"
...
This reverts commit 8fbf03995d
.
10 years ago
Wladimir J. van der Laan
98e84aae7a
Revert "Relay double-spends, subject to anti-DOS"
...
This reverts commit d640a3ceab
.
10 years ago
Wladimir J. van der Laan
3015e0bca6
Revert "UI to alert of respend attempt affecting wallet."
...
This reverts commit ada5a067c7
.
Conflicts:
src/qt/guiconstants.h
src/wallet.h
10 years ago
Wladimir J. van der Laan
39d3f2cb40
Revert "Add -respendnotify option and new RPC data"
...
This reverts commit 9004798e62
.
10 years ago
Wladimir J. van der Laan
680f7252f0
Revert "Add release notes entry"
...
This reverts commit 9fa53dd3bd
.
10 years ago
Wladimir J. van der Laan
ad26dc9c31
Revert "Formatting, spelling, comment fixes."
...
This reverts commit 7a19efe040
.
10 years ago
Wladimir J. van der Laan
cd057bfd41
Revert "Check signatures before respend relay"
...
This reverts commit 88dd3598d2
.
10 years ago
Wladimir J. van der Laan
67cc8f25c2
Revert "Remove signal DoubleSpendDetected, use function"
...
This reverts commit 0da6b3fd18
.
10 years ago
Wladimir J. van der Laan
0de61e7585
qt: Move SplashFinished to after ClientModel/WalletModel creation
...
With a large wallet there was a noticable gap between hiding of the
splash and showing the main window.
10 years ago