2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-08-23 12:58:40 +02:00
|
|
|
// 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 params deserialization.
|
|
|
|
|
|
|
|
use uint::Uint;
|
2017-01-10 12:23:59 +01:00
|
|
|
use super::ValidatorSet;
|
2016-08-23 12:58:40 +02:00
|
|
|
|
|
|
|
/// Tendermint params deserialization.
|
|
|
|
#[derive(Debug, PartialEq, Deserialize)]
|
|
|
|
pub struct TendermintParams {
|
2017-01-10 12:23:59 +01:00
|
|
|
/// Valid validators.
|
|
|
|
pub validators: ValidatorSet,
|
2016-11-15 16:25:30 +01:00
|
|
|
/// Propose step timeout in milliseconds.
|
|
|
|
#[serde(rename="timeoutPropose")]
|
|
|
|
pub timeout_propose: Option<Uint>,
|
|
|
|
/// Prevote step timeout in milliseconds.
|
|
|
|
#[serde(rename="timeoutPrevote")]
|
|
|
|
pub timeout_prevote: Option<Uint>,
|
|
|
|
/// Precommit step timeout in milliseconds.
|
|
|
|
#[serde(rename="timeoutPrecommit")]
|
|
|
|
pub timeout_precommit: Option<Uint>,
|
|
|
|
/// Commit step timeout in milliseconds.
|
|
|
|
#[serde(rename="timeoutCommit")]
|
|
|
|
pub timeout_commit: Option<Uint>,
|
2016-08-23 12:58:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Tendermint engine deserialization.
|
|
|
|
#[derive(Debug, PartialEq, Deserialize)]
|
|
|
|
pub struct Tendermint {
|
|
|
|
/// Ethash params.
|
|
|
|
pub params: TendermintParams,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use serde_json;
|
2017-07-31 12:34:29 +02:00
|
|
|
use bigint::prelude::H160;
|
2017-07-31 20:17:19 +02:00
|
|
|
use hash::Address;
|
2016-08-23 12:58:40 +02:00
|
|
|
use spec::tendermint::Tendermint;
|
2017-05-14 04:53:53 +02:00
|
|
|
use spec::validator_set::ValidatorSet;
|
2016-08-23 12:58:40 +02:00
|
|
|
|
|
|
|
#[test]
|
2017-01-05 21:16:13 +01:00
|
|
|
fn tendermint_deserialization() {
|
2016-08-23 12:58:40 +02:00
|
|
|
let s = r#"{
|
|
|
|
"params": {
|
2017-01-10 12:23:59 +01:00
|
|
|
"validators": {
|
|
|
|
"list": ["0xc6d9d2cd449a754c494264e1809c50e34d64562b"]
|
2017-07-31 12:34:29 +02:00
|
|
|
}
|
2016-08-23 12:58:40 +02:00
|
|
|
}
|
|
|
|
}"#;
|
|
|
|
|
2017-05-14 04:53:53 +02:00
|
|
|
let deserialized: Tendermint = serde_json::from_str(s).unwrap();
|
|
|
|
let vs = ValidatorSet::List(vec![Address(H160::from("0xc6d9d2cd449a754c494264e1809c50e34d64562b"))]);
|
|
|
|
assert_eq!(deserialized.params.validators, vs);
|
2016-08-23 12:58:40 +02:00
|
|
|
}
|
|
|
|
}
|