practicalswift
|
a720b928c8
|
Remove includes in .cpp files for things the corresponding .h file already included
|
2017-11-16 22:26:34 +01:00 |
|
MeshCollider
|
1a445343f6
|
scripted-diff: Replace #include "" with #include <> (ryanofsky)
-BEGIN VERIFY SCRIPT-
for f in \
src/*.cpp \
src/*.h \
src/bench/*.cpp \
src/bench/*.h \
src/compat/*.cpp \
src/compat/*.h \
src/consensus/*.cpp \
src/consensus/*.h \
src/crypto/*.cpp \
src/crypto/*.h \
src/crypto/ctaes/*.h \
src/policy/*.cpp \
src/policy/*.h \
src/primitives/*.cpp \
src/primitives/*.h \
src/qt/*.cpp \
src/qt/*.h \
src/qt/test/*.cpp \
src/qt/test/*.h \
src/rpc/*.cpp \
src/rpc/*.h \
src/script/*.cpp \
src/script/*.h \
src/support/*.cpp \
src/support/*.h \
src/support/allocators/*.h \
src/test/*.cpp \
src/test/*.h \
src/wallet/*.cpp \
src/wallet/*.h \
src/wallet/test/*.cpp \
src/wallet/test/*.h \
src/zmq/*.cpp \
src/zmq/*.h
do
base=${f%/*}/ relbase=${base#src/} sed -i "s:#include \"\(.*\)\"\(.*\):if test -e \$base'\\1'; then echo \"#include <\"\$relbase\"\\1>\\2\"; else echo \"#include <\\1>\\2\"; fi:e" $f
done
-END VERIFY SCRIPT-
|
2017-11-16 08:23:01 +13:00 |
|
Pieter Wuille
|
c091b99379
|
Implement BIP173 addresses and tests
|
2017-09-28 16:24:30 -07:00 |
|
Jim Posen
|
7a1e873b27
|
[script] Unit tests for IsMine
Does not test watch-only addresses.
|
2017-09-21 12:24:23 -07:00 |
|
Jorge Timón
|
5995735c5b
|
scripted-diff: Remove #include <boost/foreach.hpp>
-BEGIN VERIFY SCRIPT-
sed -i ':a;N;$!ba;s/#include <boost\/foreach.hpp>\n//' ./src/*.h ./src/*.cpp ./src/*/*.h ./src/*/*.cpp ./src/*/*/*.h ./src/*/*/*.cpp
-END VERIFY SCRIPT-
|
2017-06-22 03:48:52 +02:00 |
|
Jorge Timón
|
7c00c26726
|
scripted-diff: Fully remove BOOST_FOREACH
-BEGIN VERIFY SCRIPT-
sed -i 's/BOOST_FOREACH *(\(.*\),/for (\1 :/' ./src/*.h ./src/*.cpp ./src/*/*.h ./src/*/*.cpp ./src/*/*/*.h ./src/*/*/*.cpp ;
-END VERIFY SCRIPT-
|
2017-06-05 20:10:50 +02:00 |
|
Karl-Johan Alm
|
8cbfc4e472
|
Refactor: Remove using namespace <xxx> from script/
|
2017-03-08 08:08:17 -08:00 |
|
isle2983
|
27765b6403
|
Increment MIT Licence copyright header year on files modified in 2016
Edited via:
$ contrib/devtools/copyright_header.py update .
|
2016-12-31 11:01:21 -07:00 |
|
Pieter Wuille
|
248f3a76a8
|
Fix ismine and addwitnessaddress: no uncompressed keys in segwit
|
2016-10-17 00:34:37 +08:00 |
|
Pieter Wuille
|
605e8473a7
|
BIP143: Signing logic
|
2016-06-22 15:43:01 +02:00 |
|
Wladimir J. van der Laan
|
a25a4f5b04
|
wallet_ismine.h → script/ismine.h
Removes conditional dependency of `src/test` on wallet.
Makes multisig and P2SH tests complete without wallet built-in.
|
2016-04-18 15:14:36 +02:00 |
|