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

@@ -534,7 +534,7 @@ impl LightProtocol {
if peer_info.sent_head == announcement.head_hash ||
peer_info.status.head_num >= announcement.head_num ||
// fix for underflow reported in
// https://github.com/OpenEthereum/open-ethereum/issues/10419
// https://github.com/openethereum/openethereum/issues/10419
now < peer_info.last_update ||
now - peer_info.last_update < UPDATE_INTERVAL {
continue

View File

@@ -140,7 +140,7 @@ impl Encodable for CostTable {
fn append_cost(s: &mut RlpStream, cost: &Option<U256>, kind: request::Kind) {
if let Some(ref cost) = *cost {
s.begin_list(2);
// hack around https://github.com/OpenEthereum/open-ethereum/issues/4356
// hack around https://github.com/openethereum/openethereum/issues/4356
Encodable::rlp_append(&kind, s);
s.append(cost);
}

View File

@@ -349,7 +349,7 @@ impl Encodable for Request {
fn rlp_append(&self, s: &mut RlpStream) {
s.begin_list(2);
// hack around https://github.com/OpenEthereum/open-ethereum/issues/4356
// hack around https://github.com/openethereum/openethereum/issues/4356
Encodable::rlp_append(&self.kind(), s);
match *self {
@@ -596,7 +596,7 @@ impl Encodable for Response {
fn rlp_append(&self, s: &mut RlpStream) {
s.begin_list(2);
// hack around https://github.com/OpenEthereum/open-ethereum/issues/4356
// hack around https://github.com/openethereum/openethereum/issues/4356
Encodable::rlp_append(&self.kind(), s);
match *self {