Improve ef_tests, pass all ssz_static tests

This commit is contained in:
Paul Hauner
2019-05-15 15:08:48 +10:00
parent 0af4cfa711
commit 4aa6d57abe
5 changed files with 67 additions and 54 deletions

View File

@@ -1,5 +1,8 @@
use types::{EthSpec, typenum::{U64, U8}, ChainSpec, FewValidatorsEthSpec};
use serde_derive::{Serialize, Deserialize};
use serde_derive::{Deserialize, Serialize};
use types::{
typenum::{U64, U8},
ChainSpec, EthSpec, FewValidatorsEthSpec, FoundationEthSpec,
};
/// "Minimal" testing specification, as defined here:
///
@@ -21,3 +24,5 @@ impl EthSpec for MinimalEthSpec {
FewValidatorsEthSpec::spec()
}
}
pub type MainnetEthSpec = FoundationEthSpec;