Browse Source

Merge pull request #2201 from chfast/fix_fakeextvm

Set code hash in FakeExtVM
cl-refactor
Gav Wood 10 years ago
parent
commit
e3220ec76c
  1. 1
      test/libevm/vm.cpp

1
test/libevm/vm.cpp

@ -323,6 +323,7 @@ void doVMTests(json_spirit::mValue& v, bool _fillin)
fev.thisTxCode = get<3>(fev.addresses.at(fev.myAddress));
fev.code = fev.thisTxCode;
}
fev.codeHash = sha3(fev.code);
bytes output;
bool vmExceptionOccured = false;

Loading…
Cancel
Save