Skip to content

Commit c2cf2fb

Browse files
committed
Align with branch v0.11.0.x of darkcoin/darkcoin.
2 parents c1aae9e + 0184cf7 commit c2cf2fb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+6876
-186
lines changed

.gitignore

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
*.tar.gz
22

33
*.exe
4-
src/bitcoin
5-
src/bitcoind
6-
src/bitcoin-cli
7-
src/test/test_bitcoin
8-
src/qt/test/test_bitcoin-qt
94
src/darkcoin
105
src/darkcoind
116
src/darkcoin-cli
@@ -41,7 +36,6 @@ src/qt/test/moc*.cpp
4136
*.o
4237
*.o-*
4338
*.patch
44-
.bitcoin
4539
.darkcoin
4640
*.a
4741
*.pb.cc
@@ -57,14 +51,11 @@ src/qt/test/moc*.cpp
5751
# Compilation and Qt preprocessor part
5852
*.qm
5953
Makefile
60-
bitcoin-qt
6154
darkcoin-qt
62-
Bitcoin-Qt.app
6355
Darkcoin-Qt.app
6456

6557
# Unit-tests
6658
Makefile.test
67-
bitcoin-qt_test
6859
darkcoin-qt_test
6960

7061
# Resources cpp
@@ -80,7 +71,6 @@ build
8071
#lcov
8172
*.gcno
8273
/*.info
83-
test_bitcoin.coverage/
8474
test_darkcoin.coverage/
8575
total.coverage/
8676
coverage_percent.txt
@@ -93,3 +83,6 @@ qa/pull-tester/run-bitcoind-for-test.sh
9383
qa/pull-tester/build-tests.sh
9484

9585
!src/leveldb*/Makefile
86+
87+
.cproject
88+
.project

qa/rpc-tests/util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Copyright (c) 2014 The Bitcoin Core developers
2-
# Copyright (c) 2014 vertoe & the Darkcoin developers
2+
# Copyright (c) 2014 The Darkcoin developers
33
# Distributed under the MIT/X11 software license, see the accompanying
44
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
55
#
66
# Helpful routines for regression testing
77
#
88

9-
# Add python-bitcoinrpc to module search path:
9+
# Add python-bitcoinrpc to module search path:
1010
import os
1111
import sys
1212
sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), "python-bitcoinrpc"))

qa/rpc-tests/util.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22
# Copyright (c) 2014 The Bitcoin Core developers
3-
# Copyright (c) 2014 vertoe & the Darkcoin developers
3+
# Copyright (c) 2014 The Darkcoin developers
44
# Distributed under the MIT/X11 software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

qa/rpc-tests/walletbackup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22
# Copyright (c) 2014 The Bitcoin Core developers
3-
# Copyright (c) 2014 vertoe & the Darkcoin developers
3+
# Copyright (c) 2014 The Darkcoin developers
44
# Distributed under the MIT/X11 software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

src/Makefile.am

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ DIST_SUBDIRS = . qt test
2525
.PHONY: FORCE
2626
# darkcoin core #
2727
BITCOIN_CORE_H = \
28+
activemasternode.h \
2829
addrman.h \
2930
alert.h \
3031
allocators.h \
@@ -39,14 +40,17 @@ BITCOIN_CORE_H = \
3940
compat.h \
4041
core.h \
4142
crypter.h \
43+
darksend.h \
4244
db.h \
4345
hash.h \
4446
init.h \
47+
instantx.h \
4548
key.h \
4649
keystore.h \
4750
leveldbwrapper.h \
4851
limitedmap.h \
4952
main.h \
53+
masternode.h \
5054
miner.h \
5155
mruset.h \
5256
netbase.h \
@@ -100,6 +104,7 @@ obj/build.h: FORCE
100104
version.o: obj/build.h
101105

102106
libdarkcoin_server_a_SOURCES = \
107+
activemasternode.cpp \
103108
addrman.cpp \
104109
alert.cpp \
105110
bloom.cpp \
@@ -113,6 +118,7 @@ libdarkcoin_server_a_SOURCES = \
113118
net.cpp \
114119
noui.cpp \
115120
rpcblockchain.cpp \
121+
rpcdarksend.cpp \
116122
rpcmining.cpp \
117123
rpcmisc.cpp \
118124
rpcnet.cpp \
@@ -124,6 +130,7 @@ libdarkcoin_server_a_SOURCES = \
124130
$(BITCOIN_CORE_H)
125131

126132
libdarkcoin_wallet_a_SOURCES = \
133+
activemasternode.cpp \
127134
db.cpp \
128135
crypter.cpp \
129136
rpcdump.cpp \
@@ -133,10 +140,14 @@ libdarkcoin_wallet_a_SOURCES = \
133140
$(BITCOIN_CORE_H)
134141

135142
libdarkcoin_common_a_SOURCES = \
143+
activemasternode.cpp \
136144
base58.cpp \
137145
allocators.cpp \
138146
chainparams.cpp \
139147
core.cpp \
148+
darksend.cpp \
149+
masternode.cpp \
150+
instantx.cpp \
140151
hash.cpp \
141152
key.cpp \
142153
netbase.cpp \

0 commit comments

Comments
 (0)