Enable byzantium features on non-ethash chains (#7753)

* Enable byzantium on dev chain

* Enable byzantium on constractor spec

* Enable byzantium on aura specs

* Enable byzantium on tendermint chain spec

* Enable byzantium on null chain spec

* Fix tests

* Fix test
This commit is contained in:
Afri Schoedon
2018-02-01 13:42:56 +01:00
committed by GitHub
parent 4763887a68
commit 6dec16bb41
7 changed files with 61 additions and 11 deletions

View File

@@ -850,7 +850,7 @@ mod tests {
let expected = H256::from_str(
"0000000000000000000000000000000000000000000000000000000000000001",
).unwrap();
let address = Address::from_str("0000000000000000000000000000000000000005").unwrap();
let address = Address::from_str("0000000000000000000000000000000000001337").unwrap();
assert_eq!(state.storage_at(&address, &H256::zero()).unwrap(), expected);
assert_eq!(state.balance(&address).unwrap(), 1.into());