Browse Source

coinspect_tests: adjust comments

Josh Siegel 3 years ago
parent
commit
a1598b2769
2 changed files with 2 additions and 4 deletions
  1. 0 2
      algorand/admin.py
  2. 2 2
      algorand/test/test.py

+ 0 - 2
algorand/admin.py

@@ -1013,8 +1013,6 @@ class PortalCore:
                 txns.append(transaction.ApplicationCallTxn(
                 txns.append(transaction.ApplicationCallTxn(
                     sender=sender.getAddress(),
                     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"),
                     index=int.from_bytes(bytes.fromhex(p["ToAddress"])[24:], "big"),
                     on_complete=transaction.OnComplete.NoOpOC,
                     on_complete=transaction.OnComplete.NoOpOC,
                     app_args=[m.get_selector(), m.args[0].type.encode(vaa)],
                     app_args=[m.get_selector(), m.args[0].type.encode(vaa)],

+ 2 - 2
algorand/test/test.py

@@ -671,8 +671,8 @@ class AlgoTest(PortalCore):
             try:
             try:
                 self.submitVAA(vaa, client, player, self.tokenid)
                 self.submitVAA(vaa, client, player, self.tokenid)
             except algosdk.error.AlgodHTTPError as e:
             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 True, vaa, None
                 return False, vaa, e
                 return False, vaa, e