Skip to content

Commit afe6f1a

Browse files
authored
Merge pull request #55 from algorandfoundation/feat/bump_utils
feat: bump utils dependency to v4.0.0-beta.1
2 parents 8ee53ac + 386539b commit afe6f1a

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

docs/usage.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,6 @@ client.appClient.fund_app_account(
464464
)
465465
client.send.opt_in.opt_in_to_application(
466466
args=[],
467-
send_params={"populate_app_call_resources": True},
468467
)
469468

470469
assert client.state.local(defaultSender).local_key() == 1337

examples/tests/test_arc56_test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def test_arc56_demo(
123123
assert client.state.global_state.global_map.get_value("foo") == FooUint16BarUint16(foo=13, bar=37)
124124

125125
client.app_client.fund_app_account(FundAppAccountParams(amount=AlgoAmount.from_micro_algo(1_000_000)))
126-
client.send.opt_in.opt_in_to_application(send_params={"populate_app_call_resources": True})
126+
client.send.opt_in.opt_in_to_application()
127127
assert client.state.local_state(default_deployer.address).local_key == 1337
128128
assert client.state.local_state(default_deployer.address).local_map.get_value(b"foo") == "bar"
129129
client.state.box.box_map.get_value

examples/tests/test_structs_arc56_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def test_nested_structs_from_state_are_dataclasses(
5555

5656
client.algorand.account.ensure_funded_from_environment(client.app_address, AlgoAmount.from_algo(10))
5757

58-
client.send.opt_in.opt_in(send_params={"populate_app_call_resources": True})
58+
client.send.opt_in.opt_in()
5959
all_local_state = client.state.local_state(default_deployer.address).get_all()
6060
local_state = client.state.local_state(default_deployer.address).my_localstate_struct
6161

poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ readme = "README.md"
88

99
[tool.poetry.dependencies]
1010
python = "^3.10"
11-
algokit-utils = "^3.0.0"
11+
algokit-utils = "^4.0.0-beta.1"
1212

1313
[tool.poetry.group.dev.dependencies]
1414
ruff = ">=0.8.6,<0.12.0"

0 commit comments

Comments
 (0)