Skip to content
This repository has been archived by the owner on Oct 28, 2021. It is now read-only.

Commit

Permalink
conditionally enable bitshift on ConstantinopleForkBlock
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Siwula authored and axic committed Feb 22, 2018
1 parent 843f97d commit a3d93a8
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 58 deletions.
2 changes: 2 additions & 0 deletions libethcore/EVMSchedule.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ struct EVMSchedule
bool haveDelegateCall = true;
bool eip150Mode = false;
bool eip158Mode = false;
bool haveBitwiseShifting = false;
bool haveRevert = false;
bool haveReturnData = false;
bool haveStaticCall = false;
Expand Down Expand Up @@ -130,6 +131,7 @@ static const EVMSchedule ConstantinopleSchedule = []
EVMSchedule schedule = ByzantiumSchedule;
schedule.blockhashGas = 800;
schedule.haveCreate2 = true;
schedule.haveBitwiseShifting = true;
return schedule;
}();

Expand Down
Loading

0 comments on commit a3d93a8

Please sign in to comment.