Skip to content

Commit 7a2559f

Browse files
authored
fix: feedback batch #4 (#136)
* fix: remove setting global handler that affects non algokit loggers * chore: remove beaker * fix: set token to empty string for mainnet and testnet
1 parent 43aa41f commit 7a2559f

File tree

12 files changed

+424
-732
lines changed

12 files changed

+424
-732
lines changed

docs/markdown/autoapi/algokit_utils/applications/abi/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ Wraps the raw return value and decoded value along with any decode errors.
4949
* **value** – The decoded return value from the method call
5050
* **method** – The ABI method definition
5151
* **decode_error** – The exception that occurred during decoding, if any
52+
* **tx_info** – The transaction info for the method call from raw algosdk ABIResult
5253

5354
#### raw_value *: bytes | None* *= None*
5455

@@ -58,6 +59,8 @@ Wraps the raw return value and decoded value along with any decode errors.
5859

5960
#### decode_error *: Exception | None* *= None*
6061

62+
#### tx_info *: dict[str, Any] | None* *= None*
63+
6164
#### *property* is_success *: bool*
6265

6366
Returns True if the ABI call was successful (no decode error)

legacy_v2_tests/app_client_test.json

Lines changed: 378 additions & 1 deletion
Large diffs are not rendered by default.

legacy_v2_tests/app_client_test.py

Lines changed: 0 additions & 199 deletions
This file was deleted.

legacy_v2_tests/app_multi_underscore_template_var.py

Lines changed: 0 additions & 24 deletions
This file was deleted.

legacy_v2_tests/conftest.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
get_kmd_client_from_algod_client,
2525
replace_template_variables,
2626
)
27-
from legacy_v2_tests import app_client_test
2827

2928
if TYPE_CHECKING:
3029
from algosdk.kmd import KMDClient
@@ -156,9 +155,6 @@ def funded_account(algod_client: "AlgodClient") -> Account:
156155

157156
@pytest.fixture(scope="session")
158157
def app_spec() -> ApplicationSpecification:
159-
app_spec = app_client_test.app.build()
160-
path = Path(__file__).parent / "app_client_test.json"
161-
path.write_text(app_spec.to_json())
162158
return read_spec("app_client_test.json", deletable=True, updatable=True, template_values={"VERSION": 1})
163159

164160

0 commit comments

Comments
 (0)