[beta] Byzantium updates (#6529)

* fix modexp bug: return 0 if base=0 (#6424)

* Running state test using parity-evm (#6355)

* Initial version of state tests.

* Refactor state to support tracing.

* Unify TransactResult.

* Add test.

* Byzantium updates
This commit is contained in:
Arkadiy Paronyan
2017-09-16 12:21:35 +02:00
committed by GitHub
parent d8bf5fc848
commit bb311e838b
57 changed files with 1403 additions and 762 deletions

View File

@@ -85,7 +85,7 @@ pub trait Tracer: Send {
fn subtracer(&self) -> Self where Self: Sized;
/// Consumes self and returns all traces.
fn traces(self) -> Vec<FlatTrace>;
fn drain(self) -> Vec<FlatTrace>;
}
/// Used by executive to build VM traces.