Skip to content

Commit 81fd86e

Browse files
committed
STATICCALL initiates a tx
1 parent 812afee commit 81fd86e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyevmasm/evmasm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ def is_endtx(self):
300300
@property
301301
def is_starttx(self):
302302
""" True if the instruction is a transaction initiator """
303-
return self.semantics in ('CREATE', 'CREATE2', 'CALL', 'CALLCODE', 'DELEGATECALL')
303+
return self.semantics in ('CREATE', 'CREATE2', 'CALL', 'CALLCODE', 'DELEGATECALL', 'STATICCALL')
304304

305305
@property
306306
def is_branch(self):

0 commit comments

Comments
 (0)