Skip to content

Commit

Permalink
Merge branch 'bench_tests' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
justinvforvendetta committed Feb 24, 2019
2 parents 33ce10b + cea4d17 commit 3969482
Show file tree
Hide file tree
Showing 64 changed files with 5,128 additions and 1,888 deletions.
2 changes: 1 addition & 1 deletion doc/dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ These are the dependencies currently used by Verge Core. You can find instructio
| Qt | [5.7.1](https://download.qt.io/official_releases/qt/) | 4.7+ | No | | |
| XCB | | | | | [Yes](/depends/packages/qt.mk#L94) (Linux only) |
| xkbcommon | | | | | [Yes](/depends/packages/qt.mk#L93) (Linux only) |
| ZeroMQ | [4.2.3](https://github.com/zeromq/libzmq/releases) | | No | | |
| ZeroMQ | [4.3.1](https://github.com/zeromq/libzmq/releases) | | No | | |
| zlib | [1.2.11](http://zlib.net/) | | | | No |
14 changes: 12 additions & 2 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ endif
VERGE_CORE_H = \
addrdb.h \
addrman.h \
attributes.h \
banman.h \
base58.h \
bech32.h \
bloom.h \
Expand Down Expand Up @@ -129,6 +131,7 @@ VERGE_CORE_H = \
index/txindex.h \
indirectmap.h \
init.h \
interfaces/chain.h \
interfaces/handler.h \
interfaces/node.h \
interfaces/wallet.h \
Expand All @@ -146,6 +149,7 @@ VERGE_CORE_H = \
netaddress.h \
netbase.h \
netmessagemaker.h \
node/transaction.h \
noui.h \
policy/feerate.h \
policy/fees.h \
Expand All @@ -165,6 +169,7 @@ VERGE_CORE_H = \
rpc/register.h \
rpc/util.h \
scheduler.h \
script/descriptor.h \
script/ismine.h \
script/sigcache.h \
script/sign.h \
Expand Down Expand Up @@ -209,7 +214,8 @@ VERGE_CORE_H = \
zmq/zmqabstractnotifier.h \
zmq/zmqconfig.h\
zmq/zmqnotificationinterface.h \
zmq/zmqpublishnotifier.h
zmq/zmqpublishnotifier.h \
zmq/zmqrpc.h


obj/build.h: FORCE
Expand All @@ -224,6 +230,7 @@ libverge_server_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
libverge_server_a_SOURCES = \
addrdb.cpp \
addrman.cpp \
banman.cpp \
bloom.cpp \
blockencodings.cpp \
blockfilter.cpp \
Expand All @@ -240,6 +247,7 @@ libverge_server_a_SOURCES = \
miner.cpp \
net.cpp \
net_processing.cpp \
node/transaction.cpp \
noui.cpp \
policy/fees.cpp \
policy/policy.cpp \
Expand Down Expand Up @@ -271,7 +279,8 @@ libverge_zmq_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
libverge_zmq_a_SOURCES = \
zmq/zmqabstractnotifier.cpp \
zmq/zmqnotificationinterface.cpp \
zmq/zmqpublishnotifier.cpp
zmq/zmqpublishnotifier.cpp \
zmq/zmqrpc.cpp
endif


Expand Down Expand Up @@ -447,6 +456,7 @@ libverge_common_a_SOURCES = \
policy/feerate.cpp \
protocol.cpp \
scheduler.cpp \
script/descriptor.cpp \
script/ismine.cpp \
script/sign.cpp \
script/standard.cpp \
Expand Down

0 comments on commit 3969482

Please sign in to comment.