From 0b9ab0797ff481052862c10035da34615bbfacf6 Mon Sep 17 00:00:00 2001 From: keorn Date: Thu, 15 Dec 2016 13:45:22 +0100 Subject: [PATCH] fix build --- ethcore/src/spec/seal.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ethcore/src/spec/seal.rs b/ethcore/src/spec/seal.rs index 7c0735483..967ffc22b 100644 --- a/ethcore/src/spec/seal.rs +++ b/ethcore/src/spec/seal.rs @@ -45,7 +45,7 @@ pub struct AuthorityRound { } /// Tendermint seal. -pub struct AuthorityRound { +pub struct Tendermint { /// Seal round. pub round: usize, /// Proposal seal signature. @@ -62,7 +62,7 @@ impl Into for AuthorityRound { } } -impl Into for AuthorityRound { +impl Into for Tendermint { fn into(self) -> Generic { let mut s = RlpStream::new_list(3); s.append(&self.round).append(&self.proposal).append(&self.precommits);