From 0a93ff7172fd99002b35ad27861985aff6550843 Mon Sep 17 00:00:00 2001 From: z80 <z80@ophy.xyz> Date: Sat, 25 Nov 2023 02:02:05 -0500 Subject: [PATCH] fix: inline IR changes --- examples/venom.dasy | 5 ----- tests/test_dasy.py | 4 ---- 2 files changed, 9 deletions(-) diff --git a/examples/venom.dasy b/examples/venom.dasy index eb1d1dc..f217c3a 100644 --- a/examples/venom.dasy +++ b/examples/venom.dasy @@ -1,8 +1,3 @@ -(defn storeInMem [] :external - (venom "(seq (mstore (add 32 31) 5945936342127) - (mstore 0 20) - (return 0 0))")) - (defn retOne [] :uint256 :external (defvar x :uint256 0) (venom "(mstore 64 1)") diff --git a/tests/test_dasy.py b/tests/test_dasy.py index a49a704..b36311e 100644 --- a/tests/test_dasy.py +++ b/tests/test_dasy.py @@ -4,10 +4,6 @@ import pytest -def test_venom(): - c = compile("examples/venom.dasy") - assert c.retOne() == 1 - def test_compare_venom_vyper(): c = compile("examples/venom.dasy") v = boa.load("examples/venom_comp.vy")