Browse Source

remove unnecessary replication of the contract's address

cl-refactor
Vincent Gariepy 11 years ago
parent
commit
93e25c51e5
  1. 3
      eth/main.cpp

3
eth/main.cpp

@ -298,8 +298,7 @@ int main(int argc, char** argv)
cin >> rechex;
c.lock();
auto hba = h160(fromHex(rechex));
auto h = h160((byte const*)hba.data(), h160::ConstructFromPointer);
auto h = h160(fromHex(rechex));
stringstream s;
auto mem = c.state().contractMemory(h);

Loading…
Cancel
Save