tests/solidity: add contract to test every opcode (#19283)

Fixes #18210
This commit is contained in:
Lucas Hendren
2019-09-26 04:30:33 -04:00
committed by Felix Lange
parent 0568e81701
commit 62391ddbeb
7 changed files with 503 additions and 0 deletions

View File

@ -0,0 +1,5 @@
var OpCodes = artifacts.require("./OpCodes.sol");
module.exports = function(deployer) {
deployer.deploy(OpCodes);
};