mirror of https://github.com/crytic/slither
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
216 B
12 lines
216 B
1 year ago
|
counter: uint256
|
||
|
config: bool
|
||
|
@internal
|
||
|
def b(y: uint256, config: bool = True):
|
||
|
if config:
|
||
|
self.counter = y
|
||
|
|
||
|
@external
|
||
|
def a(x: uint256, z: bool):
|
||
|
self.b(x)
|
||
|
self.b(1, self.config)
|
||
|
self.b(1, z)
|