Fix project name, links, rename the binaries (#11580)

* Fix project name, links, rename binary

* Update util/version/Cargo.toml

Co-Authored-By: David <dvdplm@gmail.com>

* Update updater/Cargo.toml

Co-Authored-By: David <dvdplm@gmail.com>

* Update util/version/Cargo.toml

Co-Authored-By: David <dvdplm@gmail.com>

Co-authored-by: David <dvdplm@gmail.com>
This commit is contained in:
Artem Vorotnikov
2020-03-25 19:16:51 +03:00
committed by GitHub
parent 0ac15a0883
commit 4f26ffd447
138 changed files with 6321 additions and 6324 deletions

View File

@@ -222,7 +222,7 @@ impl<'x> OpenBlock<'x> {
self.block.header.set_transactions_root(*header.transactions_root());
// For Aura-based chains, the seal may contain EmptySteps which are used to bestow rewards;
// such rewards affect the state and the state root (see
// https://github.com/OpenEthereum/open-ethereum/pull/11475).
// https://github.com/openethereum/openethereum/pull/11475).
self.block.header.set_seal(header.seal().to_vec());
// TODO: that's horrible. set only for backwards compatibility
if header.extra_data().len() > self.engine.maximum_extra_data_size() {
@@ -363,7 +363,7 @@ impl LockedBlock {
/// Provide a valid seal in order to turn this into a `SealedBlock`.
/// This does check the validity of `seal` with the engine.
/// Returns the `ClosedBlock` back again if the seal is no good.
/// TODO(https://github.com/OpenEthereum/open-ethereum/issues/10407): This is currently only used in POW chain call paths, we should really merge it with seal() above.
/// TODO(https://github.com/openethereum/openethereum/issues/10407): This is currently only used in POW chain call paths, we should really merge it with seal() above.
pub fn try_seal(
self,
engine: &dyn Engine,

View File

@@ -147,7 +147,7 @@ mod block_tests {
json_chain_test(path, json_data, h)
}
//todo[dvdplm] do these tests match all folders in `res/` or are there tests we're missing?
//Issue: https://github.com/OpenEthereum/open-ethereum/issues/11085
//Issue: https://github.com/openethereum/openethereum/issues/11085
declare_test!{BlockchainTests_bcBlockGasLimitTest, "BlockchainTests/bcBlockGasLimitTest"}
declare_test!{BlockchainTests_bcExploitTest, "BlockchainTests/bcExploitTest"}
declare_test!{BlockchainTests_bcForgedTest, "BlockchainTests/bcForgedTest"}
@@ -199,7 +199,7 @@ mod block_tests {
// "RevertPrecompiledTouch_storage" contains 4 tests, only two fails
// "RevertPrecompiledTouchExactOOG" contains a ton of tests, only two fails
// "RevertPrecompiledTouch" has 4 tests, 2 failures
// Ignored in currents.json, issue: https://github.com/OpenEthereum/open-ethereum/issues/11073
// Ignored in currents.json, issue: https://github.com/openethereum/openethereum/issues/11073
declare_test!{BlockchainTests_GeneralStateTest_stRevertTest, "BlockchainTests/GeneralStateTests/stRevertTest/"}
declare_test!{BlockchainTests_GeneralStateTest_stShift, "BlockchainTests/GeneralStateTests/stShift/"}
declare_test!{BlockchainTests_GeneralStateTest_stSolidityTest, "BlockchainTests/GeneralStateTests/stSolidityTest/"}

View File

@@ -166,9 +166,9 @@ mod state_tests {
// "RevertPrecompiledTouch" has 4 tests, 2 failures
// Ignored in `currents.json`.
// Issues:
// https://github.com/OpenEthereum/open-ethereum/issues/11078
// https://github.com/OpenEthereum/open-ethereum/issues/11079
// https://github.com/OpenEthereum/open-ethereum/issues/11080
// https://github.com/openethereum/openethereum/issues/11078
// https://github.com/openethereum/openethereum/issues/11079
// https://github.com/openethereum/openethereum/issues/11080
declare_test!{GeneralStateTest_stRevertTest, "GeneralStateTests/stRevertTest/"}
declare_test!{GeneralStateTest_stSStoreTest, "GeneralStateTests/stSStoreTest/"}
declare_test!{GeneralStateTest_stShift, "GeneralStateTests/stShift/"}

View File

@@ -41,7 +41,7 @@ pub fn run_test_path<H: FnMut(&str, HookType)>(
) {
if !skip.is_empty() {
// todo[dvdplm] it's really annoying to have to use flushln here. Should be `info!(target:
// "json-tests", …)`. Issue https://github.com/OpenEthereum/open-ethereum/issues/11084
// "json-tests", …)`. Issue https://github.com/openethereum/openethereum/issues/11084
flushed_writeln!("[run_test_path] Skipping tests in {}: {:?}", path.display(), skip);
}
let mut errors = Vec::new();

View File

@@ -681,7 +681,7 @@ impl Miner {
}
}
// TODO: (https://github.com/OpenEthereum/open-ethereum/issues/10407)
// TODO: (https://github.com/openethereum/openethereum/issues/10407)
// This is only used in authority_round path, and should be refactored to merge with the other seal() path.
// Attempts to perform internal sealing (one that does not require work: e.g. Clique
// and Aura) and handles the result depending on the type of Seal.

View File

@@ -277,7 +277,7 @@ impl<'a> EvmTestClient<'a> {
// Touch the coinbase at the end of the test to simulate
// miner reward.
// Details: https://github.com/OpenEthereum/open-ethereum/issues/9431
// Details: https://github.com/openethereum/openethereum/issues/9431
let schedule = self.spec.engine.machine().schedule(env_info.number);
self.state.add_balance(&env_info.author, &0.into(), if schedule.no_empty {
CleanupMode::NoEmpty