Skip to content

Commit

Permalink
solc 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rainbreak committed Nov 28, 2018
1 parent 0790e62 commit b247145
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test.sol
Expand Up @@ -11,7 +11,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.

pragma solidity ^0.4.23;
pragma solidity >0.4.23;

contract DSTest {
event eventListener (address target, bool exact);
Expand Down Expand Up @@ -116,7 +116,7 @@ contract DSTest {
}
}

function assertEq0(bytes a, bytes b) internal {
function assertEq0(bytes memory a, bytes memory b) internal {
bool ok = true;

if (a.length == b.length) {
Expand Down

0 comments on commit b247145

Please sign in to comment.