2016-10-05 15:33:07 +02:00
|
|
|
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
//! Tendermint block seal.
|
|
|
|
|
2016-11-07 12:34:45 +01:00
|
|
|
use util::*;
|
|
|
|
use header::Header;
|
2016-10-05 15:33:07 +02:00
|
|
|
use account_provider::AccountProvider;
|
|
|
|
use rlp::{View, DecoderError, Decodable, Decoder, Encodable, RlpStream, Stream};
|
|
|
|
use basic_types::Seal;
|
2016-10-11 19:37:31 +02:00
|
|
|
use super::BlockHash;
|
2016-10-05 15:33:07 +02:00
|
|
|
|
2016-10-11 19:37:31 +02:00
|
|
|
#[derive(Debug, PartialEq, Eq, Hash)]
|
2016-10-05 15:33:07 +02:00
|
|
|
pub struct Vote {
|
2016-10-11 19:37:31 +02:00
|
|
|
block_hash: BlockHash,
|
2016-10-05 15:33:07 +02:00
|
|
|
signature: H520
|
|
|
|
}
|
|
|
|
|
2016-10-11 19:37:31 +02:00
|
|
|
fn block_hash(header: &Header) -> H256 {
|
2016-10-05 15:33:07 +02:00
|
|
|
header.rlp(Seal::WithSome(1)).sha3()
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Vote {
|
2016-10-11 19:37:31 +02:00
|
|
|
fn new(block_hash: BlockHash, signature: H520) -> Vote {
|
|
|
|
Vote { block_hash: block_hash, signature: signature }
|
|
|
|
}
|
2016-10-05 15:33:07 +02:00
|
|
|
|
|
|
|
/// Try to use the author address to create a vote.
|
|
|
|
pub fn propose(header: &Header, accounts: &AccountProvider) -> Option<Vote> {
|
2016-10-11 19:37:31 +02:00
|
|
|
Self::validate(header, accounts, *header.author())
|
2016-10-05 15:33:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Use any unlocked validator account to create a vote.
|
|
|
|
pub fn validate(header: &Header, accounts: &AccountProvider, validator: Address) -> Option<Vote> {
|
2016-10-11 19:37:31 +02:00
|
|
|
let message = block_hash(&header);
|
2016-11-07 12:34:45 +01:00
|
|
|
accounts.sign(validator, None, message)
|
2016-10-11 19:37:31 +02:00
|
|
|
.ok()
|
|
|
|
.map(Into::into)
|
|
|
|
.map(|sig| Self::new(message, sig))
|
2016-10-05 15:33:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Decodable for Vote {
|
|
|
|
fn decode<D>(decoder: &D) -> Result<Self, DecoderError> where D: Decoder {
|
|
|
|
let rlp = decoder.as_rlp();
|
|
|
|
if decoder.as_raw().len() != try!(rlp.payload_info()).total() {
|
|
|
|
return Err(DecoderError::RlpIsTooBig);
|
|
|
|
}
|
2016-10-11 19:37:31 +02:00
|
|
|
Ok(Self::new(try!(rlp.val_at(0)), try!(rlp.val_at(1))))
|
2016-10-05 15:33:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Encodable for Vote {
|
|
|
|
fn rlp_append(&self, s: &mut RlpStream) {
|
2016-10-11 19:37:31 +02:00
|
|
|
let Vote { ref block_hash, ref signature } = *self;
|
|
|
|
s.append(block_hash);
|
2016-10-05 15:33:07 +02:00
|
|
|
s.append(signature);
|
|
|
|
}
|
|
|
|
}
|