Skip to content

Commit

Permalink
Develop (#880)
Browse files Browse the repository at this point in the history
* Remove segwits segments from block template 馃コ

* Disabling Segwit components (no pre-segwit)

* Remove segwit switch from code 馃

* Reenable version bit calculations

* Enabling Chainparams genesis block and merkle root checks

* Update randomized authentication for proxy connections

* Adds copyrights to torcontroller
Resolves #867

* Tor Hidden Services v3 (#872)

* Initi v3 tor hidden services

* Support hidden services (V3) for new nodes

* Remove my laziness

* Remove more logs

* Add i2p support (#873)

* add i2p support

if using i2p wrapped daemon.

it would be nice to eventually add i2pd as an option as well.

* fix shmypo

* Update zeromq to 4.3.1 (#874) (#875)

This is related to the BTC issue
bitcoin/bitcoin#15188
and CVE https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-6250

* Improve header parsing and correction for block parsing with older nodes #865 (#870)

* Update randomized authentication for proxy connections

* Adds copyrights to torcontroller
Resolves #867

* Tor Hidden Services v3 (#872)

* Initi v3 tor hidden services

* Support hidden services (V3) for new nodes

* Remove my laziness

* Remove more logs

* Add i2p support (#873)

* add i2p support

if using i2p wrapped daemon.

it would be nice to eventually add i2pd as an option as well.

* Fix testnet chain parameters

* Refactor POW a bit for more readability

* Include Blocksignatures as part of our generated blocks
(also being transferred)

* Fix pub-/privkey prefixes for testnet

* [WIP] Bugfix block submission (#877)

* Remove segwits segments from block template 馃コ

* Disabling Segwit components (no pre-segwit)

* Remove segwit switch from code 馃

* Reenable version bit calculations

* Enabling Chainparams genesis block and merkle root checks

* Improve header parsing and correction for block parsing with older nodes #865 (#870)

* Update randomized authentication for proxy connections

* Adds copyrights to torcontroller
Resolves #867

* Tor Hidden Services v3 (#872)

* Initi v3 tor hidden services

* Support hidden services (V3) for new nodes

* Remove my laziness

* Remove more logs

* Add i2p support (#873)

* add i2p support

if using i2p wrapped daemon.

it would be nice to eventually add i2pd as an option as well.

* Fix testnet chain parameters

* Refactor POW a bit for more readability

* Include Blocksignatures as part of our generated blocks
(also being transferred)

* Fix pub-/privkey prefixes for testnet

* Remove previous invalidation schemes and replace them with our ones

* Transfer methods into cpp file rather than inline methods

* Enabling full mining capabilities

* Fix compiling issues

* Revert "Merge branch 'bench_tests' into develop"

This reverts commit 3969482, reversing
changes made to 33ce10b.
  • Loading branch information
justinvforvendetta committed Feb 24, 2019
1 parent 27431d1 commit 0eee18b
Show file tree
Hide file tree
Showing 68 changed files with 1,919 additions and 5,193 deletions.
2 changes: 1 addition & 1 deletion doc/dependencies.md
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.3.1](https://github.com/zeromq/libzmq/releases) | | No | | |
| ZeroMQ | [4.2.3](https://github.com/zeromq/libzmq/releases) | | No | | |
| zlib | [1.2.11](http://zlib.net/) | | | | No |
14 changes: 2 additions & 12 deletions src/Makefile.am
Expand Up @@ -98,8 +98,6 @@ endif
VERGE_CORE_H = \
addrdb.h \
addrman.h \
attributes.h \
banman.h \
base58.h \
bech32.h \
bloom.h \
Expand Down Expand Up @@ -131,7 +129,6 @@ VERGE_CORE_H = \
index/txindex.h \
indirectmap.h \
init.h \
interfaces/chain.h \
interfaces/handler.h \
interfaces/node.h \
interfaces/wallet.h \
Expand All @@ -149,7 +146,6 @@ VERGE_CORE_H = \
netaddress.h \
netbase.h \
netmessagemaker.h \
node/transaction.h \
noui.h \
policy/feerate.h \
policy/fees.h \
Expand All @@ -169,7 +165,6 @@ 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 @@ -215,8 +210,7 @@ VERGE_CORE_H = \
zmq/zmqabstractnotifier.h \
zmq/zmqconfig.h\
zmq/zmqnotificationinterface.h \
zmq/zmqpublishnotifier.h \
zmq/zmqrpc.h
zmq/zmqpublishnotifier.h


obj/build.h: FORCE
Expand All @@ -231,7 +225,6 @@ 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 @@ -248,7 +241,6 @@ 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 @@ -280,8 +272,7 @@ libverge_zmq_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
libverge_zmq_a_SOURCES = \
zmq/zmqabstractnotifier.cpp \
zmq/zmqnotificationinterface.cpp \
zmq/zmqpublishnotifier.cpp \
zmq/zmqrpc.cpp
zmq/zmqpublishnotifier.cpp
endif


Expand Down Expand Up @@ -457,7 +448,6 @@ 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 0eee18b

Please sign in to comment.