Skip to content
This repository was archived by the owner on Oct 28, 2021. It is now read-only.

Commit 86f7e30

Browse files
author
Dimitry Kh
committed
update license and changelog
1 parent 549fc94 commit 86f7e30

File tree

2 files changed

+5
-23
lines changed

2 files changed

+5
-23
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
- Added: [#5701](https://github.com/ethereum/aleth/issues/5701) Outputs ENR text representation in admin.nodeInfo RPC.
2121
- Added: [#5705](https://github.com/ethereum/aleth/pull/5705) Istanbul support: EIP 1108 Reduce alt_bn128 precompile gas costs.
2222
- Added: [#5707](https://github.com/ethereum/aleth/pull/5707) Aleth waits for 2 seconds after sending disconnect to peer before closing socket.
23-
- Changed: [#5735](https://github.com/ethereum/aleth/pull/5735) Tests <= ConstantinopleFix moved to `-t LegacyTests suite` in the testeth
2423
- Changed: [#5532](https://github.com/ethereum/aleth/pull/5532) The leveldb is upgraded to 1.22. This is breaking change on Windows and the old databases are not compatible.
2524
- Changed: [#5559](https://github.com/ethereum/aleth/pull/5559) Update peer validation error messages.
2625
- Changed: [#5568](https://github.com/ethereum/aleth/pull/5568) Improve rlpx handshake log messages and create new rlpx log channel.
@@ -38,6 +37,7 @@
3837
- Changed: [#5719](https://github.com/ethereum/aleth/pull/5719) Enable support for Visual Studio 2017 on Windows.
3938
- Changed: [#5713](https://github.com/ethereum/aleth/pull/5713) Propagate new blocks after PoW check rather than after import into the blockchain.
4039
- Changed: [#5734](https://github.com/ethereum/aleth/pull/5734) debug_accountRangeAt RPC method is renamed to debug_accountRange to conform with geth and retesteth requirements.
40+
- Changed: [#5735](https://github.com/ethereum/aleth/pull/5735) `testeth -t GeneralStateTests` and `testeth -t BCGeneralStateTests` commands now don't run the tests for the forks before Istanbul. To run those tests use a separate `LegacyTests` suite with commands `testeth -t LegacyTests/Constantinople/GeneralStateTests` and `testeth -t LegacyTests/Constantinople/BCGeneralStateTests -- --all`
4141
- Removed: [#5631](https://github.com/ethereum/aleth/pull/5631) Removed PARANOID build option.
4242
- Fixed: [#5562](https://github.com/ethereum/aleth/pull/5562) Don't send header request messages to peers that haven't sent us Status yet.
4343
- Fixed: [#5581](https://github.com/ethereum/aleth/pull/5581) Fixed finding neighbour nodes in Discovery.

test/tools/jsontests/StateTestFixtureBase.h

Lines changed: 4 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,6 @@
1-
/*
2-
This file is part of cpp-ethereum.
3-
4-
cpp-ethereum is free software: you can redistribute it and/or modify
5-
it under the terms of the GNU General Public License as published by
6-
the Free Software Foundation, either version 3 of the License, or
7-
(at your option) any later version.
8-
9-
cpp-ethereum is distributed in the hope that it will be useful,
10-
but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
GNU General Public License for more details.
13-
14-
You should have received a copy of the GNU General Public License
15-
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
16-
*/
17-
/** @file StateTestFixtureBase.h
18-
* @authors:
19-
* Dimitry Khokhlov <dimitry@ethereum.org>
20-
* @date 2019
21-
*/
1+
// Aleth: Ethereum C++ client, tools and libraries.
2+
// Copyright 2019 Aleth Authors.
3+
// Licensed under the GNU General Public License, Version 3.
224

235
#pragma once
246
#include <test/tools/libtesteth/TestHelper.h>
@@ -48,7 +30,7 @@ class StateTestFixtureBase
4830
BOOST_FAIL("Tests are sealed and not refillable!");
4931

5032
std::string const casename = boost::unit_test::framework::current_test_case().p_name;
51-
boost::filesystem::path suiteFillerPath = suite.getFullPathFiller(casename).parent_path();
33+
boost::filesystem::path const suiteFillerPath = suite.getFullPathFiller(casename).parent_path();
5234

5335
bool skipTheTest = false;
5436
if (test::inArray(c_timeConsumingTestSuites, casename) && !test::Options::get().all)

0 commit comments

Comments
 (0)