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

Commit

Permalink
Merge pull request #4838 from tcsiwula/bitshift
Browse files Browse the repository at this point in the history
Conditionally enable bitshift on ConstantinopleForkBlock
  • Loading branch information
axic authored Feb 22, 2018
2 parents 67f1a57 + ea2ed2e commit 8c1291a
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 52 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 @@ -121,6 +122,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 8c1291a

Please sign in to comment.