coinspect_tests: adjust comments

This commit is contained in:
Josh Siegel 2022-10-18 21:08:48 +00:00 committed by jumpsiegel
parent fd94c649b0
commit a1598b2769
2 changed files with 2 additions and 4 deletions

View File

@ -1013,8 +1013,6 @@ class PortalCore:
txns.append(transaction.ApplicationCallTxn(
sender=sender.getAddress(),
# AUDIT: this is wrong, as the index should be only the last
# eight bytes of the destionation... we fixed it
index=int.from_bytes(bytes.fromhex(p["ToAddress"])[24:], "big"),
on_complete=transaction.OnComplete.NoOpOC,
app_args=[m.get_selector(), m.args[0].type.encode(vaa)],

View File

@ -671,8 +671,8 @@ class AlgoTest(PortalCore):
try:
self.submitVAA(vaa, client, player, self.tokenid)
except algosdk.error.AlgodHTTPError as e:
# should fail right at line 936
if "opcodes=pushint 936" in str(e):
# should fail right at line 963
if "opcodes=pushint 963" in str(e):
return True, vaa, None
return False, vaa, e