R E Broadley
346193bd93
Cleanup messy error messages
10 years ago
Pieter Wuille
0c558288cb
Merge pull request #4849
...
a264e44
remove dup include of foreach.hpp in script.cpp (Philip Kaufmann)
10 years ago
Gavin Andresen
6ee78938ee
Merge pull request #4836 from morcos/fix-make_change
...
Fix make_change to not create half-satoshis
10 years ago
Gavin Andresen
3a7c3483b6
Fix make_change to not create half-satoshis
10 years ago
Wladimir J. van der Laan
41ef558aa9
univalue: make spaceStr thread-safe
...
Simply add spaces to the existing string instead of using a
temporary.
Fixes #4756 .
10 years ago
Philip Kaufmann
2605b94d73
[Qt] update form files for setting autoDefault explicitly to false
...
- also fixes indentation in one file (auto fixed by Qt Designer)
- removes several default parameters, which are not needed in the files
- related to #4840 (but not intended as fix for a no-bug)
10 years ago
Teran McKinney
f79323b0dd
Improve readability of CAddrInfo::IsTerrible
...
- Replaced 86400 with 24*60*60
- Remove references to specific timespans in comments
Github-Pull: #4724
10 years ago
Wladimir J. van der Laan
5e824181c1
Merge pull request #4850
...
1ffb99b
[Qt] copyright, style and indentation cleanup of Qt tests (Philip Kaufmann)
10 years ago
Philip Kaufmann
1ffb99b07f
[Qt] copyright, style and indentation cleanup of Qt tests
10 years ago
Wladimir J. van der Laan
406f18cfc4
Merge pull request #4843
...
81061ff
travis: add osx build (Cory Fields)
e4cf9f8
depends: fix typo in source downloading. Regression from c897b1e732
. (Cory Fields)
10 years ago
Philip Kaufmann
a264e445ff
remove dup include of foreach.hpp in script.cpp
10 years ago
Pieter Wuille
af9c3b0cff
Merge pull request #4838
...
1e4f87f
Use memcmp for uint256 equality/inequality (Pieter Wuille)
8a41e1e
Use boost::unordered_map for mapBlockIndex (Pieter Wuille)
145d5be
Introduce BlockMap type for mapBlockIndex (Pieter Wuille)
a0dbe43
checkpoints.cpp depends on main, it can use mapBlockIndex directly (Pieter Wuille)
10 years ago
Cory Fields
81061ffd69
travis: add osx build
10 years ago
Cory Fields
e4cf9f8479
depends: fix typo in source downloading. Regression from c897b1e732
.
...
Some sources are renamed after download, since the filenames don't play nice
with (for example) gitian. This fixes the rename.
Needed for OSX build as it renames a file.
10 years ago
Wladimir J. van der Laan
b4cd0975fb
Merge pull request #4783
...
fbe0fca
[Qt] minor watch-only changes (Philip Kaufmann)
10 years ago
Wladimir J. van der Laan
d800dcc32a
Merge pull request #4762
...
399cdbc
contrib/linearize: Add feature to set file's timestamp based on block header time. (Jeff Garzik)
8f5a423
contrib/linearize: split block files based on year-month, not just year (Jeff Garzik)
75400a2
contrib/linearize: Guarantee that output is generated in-order (Jeff Garzik)
10 years ago
Jeff Garzik
399cdbc700
contrib/linearize: Add feature to set file's timestamp based on block header time.
10 years ago
Wladimir J. van der Laan
65b529ba93
Merge pull request #4833
...
bbda402
net: Remove MilliSleep from StopNode (Wladimir J. van der Laan)
10 years ago
Wladimir J. van der Laan
f2cc1ee439
Merge pull request #4790
...
9189f5f
remove useless millisleep (phantomcircuit)
10 years ago
Wladimir J. van der Laan
b819d8c766
Merge pull request #4842
...
fb51e28
Added XML syntax highlighting (himynameismartin)
10 years ago
himynameismartin
fb51e28227
Added XML syntax highlighting
10 years ago
Pieter Wuille
1e4f87f5a1
Use memcmp for uint256 equality/inequality
10 years ago
Pieter Wuille
8a41e1edd4
Use boost::unordered_map for mapBlockIndex
10 years ago
Pieter Wuille
145d5be896
Introduce BlockMap type for mapBlockIndex
10 years ago
Pieter Wuille
a0dbe433bd
checkpoints.cpp depends on main, it can use mapBlockIndex directly
10 years ago
Pieter Wuille
961c4a04c2
Merge pull request #4808
...
3f6540a
Rename IMPLEMENT_SERIALIZE to ADD_SERIALIZE_METHODS (Pieter Wuille)
47eb765
Serializer simplifications after IMPLEMENT_SERIALIZE overhaul (Pieter Wuille)
10 years ago
Pieter Wuille
52c1deb745
Merge pull request #4820
...
910526d
Use OR of respective block flags for masks (Pieter Wuille)
10 years ago
Wladimir J. van der Laan
0e66f1ab26
Merge pull request #4671
...
550d4fa
Remove DNS Seeds run by entities which were never well-established. (Matt Corallo)
10 years ago
Pieter Wuille
629d75faac
Combine CCoinsViewCache's HaveCoins and const GetCoins into AccessCoins.
...
The efficient version of CCoinsViewCache::GetCoins only works for known-to-exist
cache entries, requiring a separate HaveCoins call beforehand. This is
inefficient as both perform a hashtable lookup.
Replace the non-mutable GetCoins with AccessCoins, which returns a potentially-NULL
pointer. This also decreases the overloading of GetCoins.
Also replace some copying (inefficient) GetCoins calls with equivalent AccessCoins,
decreasing the copying.
10 years ago
Wladimir J. van der Laan
bbda40226b
net: Remove MilliSleep from StopNode
...
I don't understand why it would be there in the first place. This looks
like voodoo, not programming.
10 years ago
Matt Corallo
550d4fa7a7
Remove DNS Seeds run by entities which were never well-established.
10 years ago
phantomcircuit
9189f5fe4d
remove useless millisleep
...
reduces time to service requests improving performance
10 years ago
Pieter Wuille
910526d848
Use OR of respective block flags for masks
10 years ago
Pieter Wuille
b8d92236f6
Merge pull request #4812
...
53efb09
Discover some missing includes (jtimon)
8d5e510
Remove unused function StackString() and class CCoins; (jtimon)
10 years ago
Wladimir J. van der Laan
6ce927cf10
Merge pull request #4810
...
c0f5d4a
Fixing Compiler Error C2466 (ENikS)
10 years ago
Pieter Wuille
3f6540ad8f
Rename IMPLEMENT_SERIALIZE to ADD_SERIALIZE_METHODS
10 years ago
jtimon
53efb09e4c
Discover some missing includes
10 years ago
jtimon
8d5e5102f6
Remove unused function StackString() and class CCoins;
10 years ago
ENikS
c0f5d4aba5
Fixing Compiler Error C2466
10 years ago
Pieter Wuille
47eb76597e
Serializer simplifications after IMPLEMENT_SERIALIZE overhaul
10 years ago
Pieter Wuille
2e731f24b5
Merge pull request #4737
...
31e9a83
Use CSizeComputer to avoid counting sizes in SerializationOp (Pieter Wuille)
84881f8
rework overhauled serialization methods to non-static (Kamil Domanski)
5d96b4a
remove fields of ser_streamplaceholder (Kamil Domanski)
3d796f8
overhaul serialization code (Kamil Domanski)
10 years ago
Wladimir J. van der Laan
f6a8105037
Merge pull request #4779
...
093303a
add missing header end comments (Philip Kaufmann)
10 years ago
Wladimir J. van der Laan
107922663b
Merge pull request #4767
...
b144a74
depends: bump miniupnpc to 1.9.20140701. (Cory Fields)
f628127
depends: bump openssl to 1.0.1i (Cory Fields)
9f7f504
build: add -DMINIUPNP_STATICLIB for new version (Cory Fields)
10 years ago
Wladimir J. van der Laan
01113f7b43
Merge pull request #4780
...
4d04492
add missing copyright headers (Philip Kaufmann)
10 years ago
Wladimir J. van der Laan
2c995de4cd
Merge pull request #4776
...
6f5d33b
Update translations after update script improvements (Wladimir J. van der Laan)
da59f28
Add deeper XML checking to update-translation script (Wladimir J. van der Laan)
10 years ago
Wladimir J. van der Laan
6f5d33b3d2
Update translations after update script improvements
10 years ago
Wladimir J. van der Laan
da59f28335
Add deeper XML checking to update-translation script
...
- Catch problems such as mismatched formatting characters. Remove
messages that can give problems at runtime.
- Also remove unfinished/untranslated messages, they just take up space
in the ts and waste parsing time.
Fixes #4774 .
10 years ago
Wladimir J. van der Laan
93f97aab62
Merge pull request #4768
...
2e28031
Perform CVerifyDB on pcoinsdbview instead of pcoinsTip (Wladimir J. van der Laan)
10 years ago
Cozz Lovan
d920f7dcf8
Move g_signals.SetBestChain(..) below SyncWithWallets
10 years ago
Pieter Wuille
31e9a8384a
Use CSizeComputer to avoid counting sizes in SerializationOp
10 years ago