Skip to content
This repository was archived by the owner on Nov 6, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 0 additions & 58 deletions ethcore/res/tendermint.json

This file was deleted.

4 changes: 0 additions & 4 deletions ethcore/src/engines/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,7 @@ mod basic_authority;
mod instant_seal;
mod null_engine;
mod signer;
mod tendermint;
mod transition;
mod validator_set;
mod vote_collector;

pub mod block_reward;
pub mod epoch;
Expand All @@ -34,7 +31,6 @@ pub use self::basic_authority::BasicAuthority;
pub use self::epoch::{EpochVerifier, Transition as EpochTransition};
pub use self::instant_seal::{InstantSeal, InstantSealParams};
pub use self::null_engine::NullEngine;
pub use self::tendermint::Tendermint;

use std::sync::{Weak, Arc};
use std::collections::{BTreeMap, HashMap};
Expand Down
5 changes: 0 additions & 5 deletions ethcore/src/engines/signer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,6 @@ impl EngineSigner {
self.address.clone()
}

/// Check if the given address is the signing address.
pub fn is_address(&self, address: &Address) -> bool {
self.address.map_or(false, |a| a == *address)
}

/// Check if the signing address was set.
pub fn is_some(&self) -> bool {
self.address.is_some()
Expand Down
298 changes: 0 additions & 298 deletions ethcore/src/engines/tendermint/message.rs

This file was deleted.

Loading