2016-01-09 12:30:41 +01:00
|
|
|
use common::*;
|
2015-12-21 22:08:42 +01:00
|
|
|
use flate2::read::GzDecoder;
|
2016-01-09 12:30:41 +01:00
|
|
|
use engine::*;
|
2016-01-25 18:56:36 +01:00
|
|
|
use pod_state::*;
|
2016-01-09 12:30:41 +01:00
|
|
|
use null_engine::*;
|
2015-12-21 22:08:42 +01:00
|
|
|
|
|
|
|
/// Converts file from base64 gzipped bytes to json
|
2016-01-07 19:10:29 +01:00
|
|
|
pub fn gzip64res_to_json(source: &[u8]) -> Json {
|
2015-12-21 22:08:42 +01:00
|
|
|
// there is probably no need to store genesis in based64 gzip,
|
|
|
|
// but that's what go does, and it was easy to load it this way
|
|
|
|
let data = source.from_base64().expect("Genesis block is malformed!");
|
|
|
|
let data_ref: &[u8] = &data;
|
|
|
|
let mut decoder = GzDecoder::new(data_ref).expect("Gzip is invalid");
|
2016-01-17 15:56:09 +01:00
|
|
|
let mut s: String = "".to_owned();
|
2015-12-21 22:08:42 +01:00
|
|
|
decoder.read_to_string(&mut s).expect("Gzip is invalid");
|
|
|
|
Json::from_str(&s).expect("Json is invalid")
|
|
|
|
}
|
|
|
|
|
2015-12-23 12:53:34 +01:00
|
|
|
/// Convert JSON value to equivlaent RLP representation.
|
|
|
|
// TODO: handle container types.
|
2016-01-06 15:57:17 +01:00
|
|
|
fn json_to_rlp(json: &Json) -> Bytes {
|
2016-01-17 15:56:09 +01:00
|
|
|
match *json {
|
|
|
|
Json::Boolean(o) => encode(&(if o {1u64} else {0})),
|
|
|
|
Json::I64(o) => encode(&(o as u64)),
|
|
|
|
Json::U64(o) => encode(&o),
|
|
|
|
Json::String(ref s) if s.len() >= 2 && &s[0..2] == "0x" && U256::from_str(&s[2..]).is_ok() => {
|
2015-12-23 12:53:34 +01:00
|
|
|
encode(&U256::from_str(&s[2..]).unwrap())
|
|
|
|
},
|
2016-01-17 15:56:09 +01:00
|
|
|
Json::String(ref s) => {
|
2015-12-23 12:53:34 +01:00
|
|
|
encode(s)
|
|
|
|
},
|
|
|
|
_ => panic!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-21 22:08:42 +01:00
|
|
|
/// Convert JSON to a string->RLP map.
|
2016-01-06 15:57:17 +01:00
|
|
|
fn json_to_rlp_map(json: &Json) -> HashMap<String, Bytes> {
|
2015-12-23 12:53:34 +01:00
|
|
|
json.as_object().unwrap().iter().map(|(k, v)| (k, json_to_rlp(v))).fold(HashMap::new(), |mut acc, kv| {
|
2016-01-05 19:12:19 +01:00
|
|
|
acc.insert(kv.0.clone(), kv.1);
|
|
|
|
acc
|
|
|
|
})
|
2015-12-21 22:08:42 +01:00
|
|
|
}
|
2015-12-20 21:45:43 +01:00
|
|
|
|
|
|
|
/// Parameters for a block chain; includes both those intrinsic to the design of the
|
|
|
|
/// chain and those to be interpreted by the active chain engine.
|
2016-01-07 19:10:29 +01:00
|
|
|
#[derive(Debug)]
|
2015-12-20 21:45:43 +01:00
|
|
|
pub struct Spec {
|
2016-01-14 22:38:49 +01:00
|
|
|
// User friendly spec name
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [Gav Wood] Please document me
|
2016-01-14 22:38:49 +01:00
|
|
|
pub name: String,
|
2015-12-20 21:45:43 +01:00
|
|
|
// What engine are we using for this?
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [Gav Wood] Please document me
|
2015-12-20 21:45:43 +01:00
|
|
|
pub engine_name: String,
|
|
|
|
|
2016-01-23 23:53:20 +01:00
|
|
|
/// Known nodes on the network in enode format.
|
|
|
|
pub nodes: Vec<String>,
|
|
|
|
|
2015-12-21 18:40:48 +01:00
|
|
|
// Parameters concerning operation of the specific engine we're using.
|
|
|
|
// Name -> RLP-encoded value
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [Gav Wood] Please document me
|
2015-12-21 18:40:48 +01:00
|
|
|
pub engine_params: HashMap<String, Bytes>,
|
2015-12-20 21:45:43 +01:00
|
|
|
|
|
|
|
// Builtin-contracts are here for now but would like to abstract into Engine API eventually.
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [Gav Wood] Please document me
|
2016-01-25 18:56:36 +01:00
|
|
|
pub builtins: BTreeMap<Address, Builtin>,
|
2015-12-20 21:45:43 +01:00
|
|
|
|
|
|
|
// Genesis params.
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [Gav Wood] Please document me
|
2015-12-20 21:45:43 +01:00
|
|
|
pub parent_hash: H256,
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [Gav Wood] Please document me
|
2015-12-20 21:45:43 +01:00
|
|
|
pub author: Address,
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [Gav Wood] Please document me
|
2015-12-20 21:45:43 +01:00
|
|
|
pub difficulty: U256,
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [Gav Wood] Please document me
|
2015-12-20 21:45:43 +01:00
|
|
|
pub gas_limit: U256,
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [Gav Wood] Please document me
|
2015-12-20 21:45:43 +01:00
|
|
|
pub gas_used: U256,
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [Gav Wood] Please document me
|
2016-01-10 22:55:07 +01:00
|
|
|
pub timestamp: u64,
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [arkpar] Please document me
|
2015-12-20 21:45:43 +01:00
|
|
|
pub extra_data: Bytes,
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [Gav Wood] Please document me
|
2016-01-25 23:24:51 +01:00
|
|
|
genesis_state: PodState,
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [Gav Wood] Please document me
|
2015-12-20 21:45:43 +01:00
|
|
|
pub seal_fields: usize,
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [Gav Wood] Please document me
|
2015-12-20 21:45:43 +01:00
|
|
|
pub seal_rlp: Bytes,
|
|
|
|
|
|
|
|
// May be prepopulated if we know this in advance.
|
2016-01-11 11:51:31 +01:00
|
|
|
state_root_memo: RwLock<Option<H256>>,
|
2015-12-20 21:45:43 +01:00
|
|
|
}
|
|
|
|
|
2016-01-19 11:15:39 +01:00
|
|
|
#[allow(wrong_self_convention)] // because to_engine(self) should be to_engine(&self)
|
2015-12-20 21:45:43 +01:00
|
|
|
impl Spec {
|
|
|
|
/// Convert this object into a boxed Engine of the right underlying type.
|
|
|
|
// TODO avoid this hard-coded nastiness - use dynamic-linked plugin framework instead.
|
2016-01-10 14:05:39 +01:00
|
|
|
pub fn to_engine(self) -> Result<Box<Engine>, Error> {
|
2015-12-20 21:45:43 +01:00
|
|
|
match self.engine_name.as_ref() {
|
|
|
|
"NullEngine" => Ok(NullEngine::new_boxed(self)),
|
2016-01-09 17:15:55 +01:00
|
|
|
"Ethash" => Ok(super::ethereum::Ethash::new_boxed(self)),
|
2016-01-10 14:05:39 +01:00
|
|
|
_ => Err(Error::UnknownEngineName(self.engine_name.clone()))
|
2015-12-20 21:45:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-05 00:11:16 +01:00
|
|
|
/// Return the state root for the genesis state, memoising accordingly.
|
2016-01-11 11:51:31 +01:00
|
|
|
pub fn state_root(&self) -> H256 {
|
|
|
|
if self.state_root_memo.read().unwrap().is_none() {
|
2016-01-25 18:56:36 +01:00
|
|
|
*self.state_root_memo.write().unwrap() = Some(self.genesis_state.root());
|
2015-12-20 21:45:43 +01:00
|
|
|
}
|
2016-01-11 11:51:31 +01:00
|
|
|
self.state_root_memo.read().unwrap().as_ref().unwrap().clone()
|
2015-12-20 21:45:43 +01:00
|
|
|
}
|
|
|
|
|
2016-01-23 23:53:20 +01:00
|
|
|
/// Get the known knodes of the network in enode format.
|
|
|
|
pub fn nodes(&self) -> &Vec<String> { &self.nodes }
|
|
|
|
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [Gav Wood] Please document me
|
2016-01-09 12:30:41 +01:00
|
|
|
pub fn genesis_header(&self) -> Header {
|
2016-01-06 15:57:17 +01:00
|
|
|
Header {
|
2015-12-21 22:08:42 +01:00
|
|
|
parent_hash: self.parent_hash.clone(),
|
2016-01-10 21:55:03 +01:00
|
|
|
timestamp: self.timestamp,
|
|
|
|
number: 0,
|
2015-12-21 22:08:42 +01:00
|
|
|
author: self.author.clone(),
|
2016-01-06 15:57:17 +01:00
|
|
|
transactions_root: SHA3_NULL_RLP.clone(),
|
|
|
|
uncles_hash: RlpStream::new_list(0).out().sha3(),
|
2015-12-21 22:08:42 +01:00
|
|
|
extra_data: self.extra_data.clone(),
|
|
|
|
state_root: self.state_root().clone(),
|
2016-01-06 15:57:17 +01:00
|
|
|
receipts_root: SHA3_NULL_RLP.clone(),
|
2015-12-21 22:08:42 +01:00
|
|
|
log_bloom: H2048::new().clone(),
|
|
|
|
gas_used: self.gas_used.clone(),
|
|
|
|
gas_limit: self.gas_limit.clone(),
|
|
|
|
difficulty: self.difficulty.clone(),
|
|
|
|
seal: {
|
|
|
|
let seal = {
|
|
|
|
let mut s = RlpStream::new_list(self.seal_fields);
|
|
|
|
s.append_raw(&self.seal_rlp, self.seal_fields);
|
|
|
|
s.out()
|
|
|
|
};
|
|
|
|
let r = Rlp::new(&seal);
|
2016-01-08 16:00:32 +01:00
|
|
|
(0..self.seal_fields).map(|i| r.at(i).as_raw().to_vec()).collect()
|
2015-12-21 22:08:42 +01:00
|
|
|
},
|
2016-01-11 11:51:31 +01:00
|
|
|
hash: RefCell::new(None),
|
2016-01-17 12:00:34 +01:00
|
|
|
bare_hash: RefCell::new(None),
|
2016-01-06 15:57:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Compose the genesis block for this chain.
|
|
|
|
pub fn genesis_block(&self) -> Bytes {
|
|
|
|
let empty_list = RlpStream::new_list(0).out();
|
|
|
|
let header = self.genesis_header();
|
2015-12-21 22:08:42 +01:00
|
|
|
let mut ret = RlpStream::new_list(3);
|
|
|
|
ret.append(&header);
|
|
|
|
ret.append_raw(&empty_list, 1);
|
|
|
|
ret.append_raw(&empty_list, 1);
|
|
|
|
ret.out()
|
2015-12-20 21:45:43 +01:00
|
|
|
}
|
2016-01-25 18:56:36 +01:00
|
|
|
|
|
|
|
/// Overwrite the genesis components with the given JSON, assuming standard Ethereum test format.
|
|
|
|
pub fn overwrite_genesis(&mut self, genesis: &Json) {
|
|
|
|
let (seal_fields, seal_rlp) = {
|
|
|
|
if genesis.find("mixHash").is_some() && genesis.find("nonce").is_some() {
|
|
|
|
let mut s = RlpStream::new();
|
|
|
|
s.append(&H256::from_json(&genesis["mixHash"]));
|
|
|
|
s.append(&H64::from_json(&genesis["nonce"]));
|
|
|
|
(2, s.out())
|
|
|
|
} else {
|
|
|
|
// backup algo that will work with sealFields/sealRlp (and without).
|
|
|
|
(
|
|
|
|
u64::from_json(&genesis["sealFields"]) as usize,
|
|
|
|
Bytes::from_json(&genesis["sealRlp"])
|
|
|
|
)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
self.parent_hash = H256::from_json(&genesis["parentHash"]);
|
|
|
|
self.author = Address::from_json(&genesis["coinbase"]);
|
|
|
|
self.difficulty = U256::from_json(&genesis["difficulty"]);
|
|
|
|
self.gas_limit = U256::from_json(&genesis["gasLimit"]);
|
|
|
|
self.gas_used = U256::from_json(&genesis["gasUsed"]);
|
|
|
|
self.timestamp = u64::from_json(&genesis["timestamp"]);
|
|
|
|
self.extra_data = Bytes::from_json(&genesis["extraData"]);
|
|
|
|
self.seal_fields = seal_fields;
|
|
|
|
self.seal_rlp = seal_rlp;
|
|
|
|
self.state_root_memo = RwLock::new(genesis.find("stateRoot").and_then(|_| Some(H256::from_json(&genesis["stateRoot"]))));
|
|
|
|
}
|
2016-01-25 23:24:51 +01:00
|
|
|
|
|
|
|
/// Alter the value of the genesis state.
|
|
|
|
pub fn set_genesis_state(&mut self, s: PodState) {
|
|
|
|
self.genesis_state = s;
|
|
|
|
*self.state_root_memo.write().unwrap() = None;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns `false` if the memoized state root is invalid. `true` otherwise.
|
|
|
|
pub fn is_state_root_valid(&self) -> bool {
|
|
|
|
self.state_root_memo.read().unwrap().clone().map_or(true, |sr| sr == self.genesis_state.root())
|
|
|
|
}
|
2016-01-14 21:58:37 +01:00
|
|
|
}
|
2015-12-20 21:45:43 +01:00
|
|
|
|
2016-01-14 21:58:37 +01:00
|
|
|
impl FromJson for Spec {
|
2015-12-23 12:10:34 +01:00
|
|
|
/// Loads a chain-specification from a json data structure
|
2016-01-14 21:58:37 +01:00
|
|
|
fn from_json(json: &Json) -> Spec {
|
2015-12-21 22:08:42 +01:00
|
|
|
// once we commit ourselves to some json parsing library (serde?)
|
|
|
|
// move it to proper data structure
|
2016-01-25 18:56:36 +01:00
|
|
|
let mut builtins = BTreeMap::new();
|
|
|
|
let mut state = PodState::new();
|
2016-01-04 22:47:45 +01:00
|
|
|
|
2016-01-07 19:10:29 +01:00
|
|
|
if let Some(&Json::Object(ref accounts)) = json.find("accounts") {
|
|
|
|
for (address, acc) in accounts.iter() {
|
|
|
|
let addr = Address::from_str(address).unwrap();
|
|
|
|
if let Some(ref builtin_json) = acc.find("builtin") {
|
|
|
|
if let Some(builtin) = Builtin::from_json(builtin_json) {
|
|
|
|
builtins.insert(addr.clone(), builtin);
|
|
|
|
}
|
2016-01-04 22:47:45 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-25 18:56:36 +01:00
|
|
|
state = xjson!(&json["accounts"]);
|
2015-12-21 22:08:42 +01:00
|
|
|
}
|
|
|
|
|
2016-01-23 23:53:20 +01:00
|
|
|
let nodes = if let Some(&Json::Array(ref ns)) = json.find("nodes") {
|
2016-01-24 00:09:18 +01:00
|
|
|
ns.iter().filter_map(|n| if let Json::String(ref s) = *n { Some(s.clone()) } else {None}).collect()
|
2016-01-23 23:53:20 +01:00
|
|
|
} else { Vec::new() };
|
|
|
|
|
2016-01-07 19:10:29 +01:00
|
|
|
let genesis = &json["genesis"];//.as_object().expect("No genesis object in JSON");
|
2015-12-21 22:08:42 +01:00
|
|
|
|
|
|
|
let (seal_fields, seal_rlp) = {
|
2016-01-07 19:10:29 +01:00
|
|
|
if genesis.find("mixHash").is_some() && genesis.find("nonce").is_some() {
|
2015-12-21 22:08:42 +01:00
|
|
|
let mut s = RlpStream::new();
|
2016-01-07 19:10:29 +01:00
|
|
|
s.append(&H256::from_str(&genesis["mixHash"].as_string().expect("mixHash not a string.")[2..]).expect("Invalid mixHash string value"));
|
|
|
|
s.append(&H64::from_str(&genesis["nonce"].as_string().expect("nonce not a string.")[2..]).expect("Invalid nonce string value"));
|
2015-12-21 22:08:42 +01:00
|
|
|
(2, s.out())
|
|
|
|
} else {
|
|
|
|
// backup algo that will work with sealFields/sealRlp (and without).
|
2016-01-07 19:10:29 +01:00
|
|
|
(
|
|
|
|
usize::from_str(&genesis["sealFields"].as_string().unwrap_or("0x")[2..]).expect("Invalid sealFields integer data"),
|
|
|
|
genesis["sealRlp"].as_string().unwrap_or("0x")[2..].from_hex().expect("Invalid sealRlp hex data")
|
|
|
|
)
|
2015-12-21 22:08:42 +01:00
|
|
|
}
|
|
|
|
};
|
2016-01-07 19:10:29 +01:00
|
|
|
|
2015-12-21 22:08:42 +01:00
|
|
|
Spec {
|
2016-01-19 11:10:38 +01:00
|
|
|
name: json.find("name").map_or("unknown", |j| j.as_string().unwrap()).to_owned(),
|
2016-01-17 15:56:09 +01:00
|
|
|
engine_name: json["engineName"].as_string().unwrap().to_owned(),
|
2015-12-23 12:53:34 +01:00
|
|
|
engine_params: json_to_rlp_map(&json["params"]),
|
2016-01-23 23:53:20 +01:00
|
|
|
nodes: nodes,
|
2015-12-21 22:08:42 +01:00
|
|
|
builtins: builtins,
|
2016-01-07 19:10:29 +01:00
|
|
|
parent_hash: H256::from_str(&genesis["parentHash"].as_string().unwrap()[2..]).unwrap(),
|
|
|
|
author: Address::from_str(&genesis["author"].as_string().unwrap()[2..]).unwrap(),
|
|
|
|
difficulty: U256::from_str(&genesis["difficulty"].as_string().unwrap()[2..]).unwrap(),
|
|
|
|
gas_limit: U256::from_str(&genesis["gasLimit"].as_string().unwrap()[2..]).unwrap(),
|
2015-12-21 22:08:42 +01:00
|
|
|
gas_used: U256::from(0u8),
|
2016-01-10 22:55:07 +01:00
|
|
|
timestamp: u64::from_str(&genesis["timestamp"].as_string().unwrap()[2..]).unwrap(),
|
2016-01-07 19:10:29 +01:00
|
|
|
extra_data: genesis["extraData"].as_string().unwrap()[2..].from_hex().unwrap(),
|
2015-12-21 22:08:42 +01:00
|
|
|
genesis_state: state,
|
|
|
|
seal_fields: seal_fields,
|
|
|
|
seal_rlp: seal_rlp,
|
2016-01-11 11:51:31 +01:00
|
|
|
state_root_memo: RwLock::new(genesis.find("stateRoot").and_then(|_| genesis["stateRoot"].as_string()).map(|s| H256::from_str(&s[2..]).unwrap())),
|
2015-12-21 22:08:42 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-14 21:58:37 +01:00
|
|
|
}
|
2015-12-21 22:08:42 +01:00
|
|
|
|
2016-01-14 21:58:37 +01:00
|
|
|
impl Spec {
|
2016-01-09 12:30:41 +01:00
|
|
|
/// Ensure that the given state DB has the trie nodes in for the genesis state.
|
2016-01-18 13:54:46 +01:00
|
|
|
pub fn ensure_db_good(&self, db: &mut HashDB) -> bool {
|
2016-01-09 12:30:41 +01:00
|
|
|
if !db.contains(&self.state_root()) {
|
2016-01-14 22:38:49 +01:00
|
|
|
info!("Populating genesis state...");
|
|
|
|
let mut root = H256::new();
|
|
|
|
{
|
|
|
|
let mut t = SecTrieDBMut::new(db, &mut root);
|
2016-01-25 18:56:36 +01:00
|
|
|
for (address, account) in self.genesis_state.get().iter() {
|
2016-01-14 22:38:49 +01:00
|
|
|
t.insert(address.as_slice(), &account.rlp());
|
|
|
|
}
|
2016-01-09 12:30:41 +01:00
|
|
|
}
|
2016-01-14 22:38:49 +01:00
|
|
|
assert!(db.contains(&self.state_root()));
|
|
|
|
info!("Genesis state is ready");
|
2016-01-18 13:54:46 +01:00
|
|
|
true
|
|
|
|
} else { false }
|
2016-01-09 12:30:41 +01:00
|
|
|
}
|
|
|
|
|
2016-01-08 16:24:14 +01:00
|
|
|
/// Create a new Spec from a JSON UTF-8 data resource `data`.
|
|
|
|
pub fn from_json_utf8(data: &[u8]) -> Spec {
|
|
|
|
Self::from_json_str(::std::str::from_utf8(data).unwrap())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a new Spec from a JSON string.
|
|
|
|
pub fn from_json_str(s: &str) -> Spec {
|
2016-01-14 21:58:37 +01:00
|
|
|
Self::from_json(&Json::from_str(s).expect("Json is invalid"))
|
2016-01-08 16:24:14 +01:00
|
|
|
}
|
|
|
|
|
2016-01-09 18:20:31 +01:00
|
|
|
/// Create a new Spec which conforms to the Morden chain except that it's a NullEngine consensus.
|
|
|
|
pub fn new_test() -> Spec { Self::from_json_utf8(include_bytes!("../res/null_morden.json")) }
|
2015-12-20 21:45:43 +01:00
|
|
|
}
|
|
|
|
|
2016-01-06 16:00:42 +01:00
|
|
|
#[cfg(test)]
|
2016-01-06 15:57:17 +01:00
|
|
|
mod tests {
|
|
|
|
use std::str::FromStr;
|
|
|
|
use util::hash::*;
|
|
|
|
use util::sha3::*;
|
|
|
|
use views::*;
|
|
|
|
use super::*;
|
|
|
|
|
2016-01-07 19:10:29 +01:00
|
|
|
#[test]
|
2016-01-09 18:20:31 +01:00
|
|
|
fn test_chain() {
|
|
|
|
let test_spec = Spec::new_test();
|
2016-01-08 16:24:14 +01:00
|
|
|
|
2016-01-11 11:51:31 +01:00
|
|
|
assert_eq!(test_spec.state_root(), H256::from_str("f3f4696bbf3b3b07775128eb7a3763279a394e382130f27c21e70233e04946a9").unwrap());
|
2016-01-09 18:20:31 +01:00
|
|
|
let genesis = test_spec.genesis_block();
|
2016-01-09 17:15:55 +01:00
|
|
|
assert_eq!(BlockView::new(&genesis).header_view().sha3(), H256::from_str("0cd786a2425d16f152c658316c423e6ce1181e15c3295826d7c9904cba9ce303").unwrap());
|
2016-01-08 16:24:14 +01:00
|
|
|
|
2016-01-09 18:20:31 +01:00
|
|
|
let _ = test_spec.to_engine();
|
2016-01-07 19:10:29 +01:00
|
|
|
}
|
2016-01-09 10:26:31 +01:00
|
|
|
}
|