Warn if genesis constructor revert (#11550)

This commit is contained in:
Atkins 2020-03-07 18:36:40 +08:00 committed by GitHub
parent 5c3c979798
commit c190092750
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -175,8 +175,22 @@ fn run_constructors<T: Backend>(
let schedule = machine.schedule(env_info.number);
let mut exec = Executive::new(&mut state, &env_info, &machine, &schedule);
// failing create is not a bug
if let Err(e) = exec.create(params, &mut substate, &mut NoopTracer, &mut NoopVMTracer) {
warn!(target: "spec", "Genesis constructor execution at {} failed: {}.", address, e);
match exec.create(params, &mut substate, &mut NoopTracer, &mut NoopVMTracer) {
Ok(r) if !r.apply_state =>
warn!(
target: "spec",
"Genesis constructor execution at {} failed: {}.",
address,
vm::Error::Reverted
),
Err(e) =>
warn!(
target: "spec",
"Genesis constructor execution at {} failed: {}.",
address,
e
),
_ => ()
}
}