|
|
@ -115,8 +115,8 @@ Avoid variables in the proxy. If a variable is in the proxy, ensure it has the s |
|
|
|
def _check(self) -> List[Output]: |
|
|
|
def _check(self) -> List[Output]: |
|
|
|
contract1 = self._contract1() |
|
|
|
contract1 = self._contract1() |
|
|
|
contract2 = self._contract2() |
|
|
|
contract2 = self._contract2() |
|
|
|
order1 = [variable for variable in contract1.stored_state_variables_ordered] |
|
|
|
order1 = contract1.stored_state_variables_ordered |
|
|
|
order2 = [variable for variable in contract2.stored_state_variables_ordered] |
|
|
|
order2 = contract2.stored_state_variables_ordered |
|
|
|
|
|
|
|
|
|
|
|
results: List[Output] = [] |
|
|
|
results: List[Output] = [] |
|
|
|
for idx, _ in enumerate(order1): |
|
|
|
for idx, _ in enumerate(order1): |
|
|
@ -236,8 +236,8 @@ Avoid variables in the proxy. If a variable is in the proxy, ensure it has the s |
|
|
|
def _check(self) -> List[Output]: |
|
|
|
def _check(self) -> List[Output]: |
|
|
|
contract1 = self._contract1() |
|
|
|
contract1 = self._contract1() |
|
|
|
contract2 = self._contract2() |
|
|
|
contract2 = self._contract2() |
|
|
|
order1 = [variable for variable in contract1.stored_state_variables_ordered] |
|
|
|
order1 = contract1.stored_state_variables_ordered |
|
|
|
order2 = [variable for variable in contract2.stored_state_variables_ordered] |
|
|
|
order2 = contract2.stored_state_variables_ordered |
|
|
|
|
|
|
|
|
|
|
|
results = [] |
|
|
|
results = [] |
|
|
|
|
|
|
|
|
|
|
|