Skip to content

Commit

Permalink
fix: removed incorrect decoding of rekey_to address. (#121)
Browse files Browse the repository at this point in the history
The rekey_to address gets decoded in class Transaction.
  • Loading branch information
uhudo authored Nov 5, 2024
1 parent e4a6435 commit 5df807f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/algokit_utils/beta/composer.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ def _common_txn_build_step(
if params.lease:
txn.lease = params.lease
if params.rekey_to:
txn.rekey_to = algosdk.encoding.decode_address(params.rekey_to) # type: ignore[no-untyped-call]
txn.rekey_to = params.rekey_to
if params.note:
txn.note = params.note

Expand Down

1 comment on commit 5df807f

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
src/algokit_utils
   _debugging.py140795%20, 41, 76, 80, 89, 129, 157
   _ensure_funded.py69199%99
   _transfer.py67396%13, 76–77
   account.py851385%14–17, 61–65, 96, 109, 136, 139, 183
   application_client.py5287785%59–60, 167, 172, 201, 313, 318–319, 321, 323, 788, 803, 821–824, 914, 954, 966, 979, 1021, 1081–1087, 1091–1096, 1098, 1134, 1141, 1254, 1284, 1298, 1336–1338, 1340, 1350–1407, 1418–1423, 1443–1446
   application_specification.py971189%92, 94, 193–202, 206
   asset.py79594%9, 27–30
   common.py13192%13
   config.py511865%38–39, 50, 55, 60, 64–69, 100–109
   deploy.py4632694%30–33, 168, 172–173, 190, 205, 246, 362–363, 418, 429–437, 454–457, 467, 475, 668–669, 693
   dispenser_api.py821285%112–113, 117–120, 155–157, 176–178
   logic_error.py39295%8, 31
   models.py131695%45, 50–52, 61–62
   network_clients.py63395%93–94, 125
src/algokit_utils/beta
   account_manager.py551475%39–40, 64, 123–130, 183–187, 198–200
   algorand_client.py1011585%111–112, 121–122, 143–145, 154–155, 224, 259, 274, 290, 303, 319
   client_manager.py371073%40, 61–63, 68–70, 75–78
   composer.py3217278%335–336, 339–340, 343–344, 347–348, 355–356, 359–360, 389, 391, 393, 396, 399, 404, 407, 411, 414, 456–489, 494–505, 510–516, 521–529, 549–562, 566, 590, 593–610, 618, 643, 659–660, 662–663, 665–666, 668–669, 671–672, 678–682
TOTAL243529688% 

Tests Skipped Failures Errors Time
204 0 💤 0 ❌ 0 🔥 2m 42s ⏱️

Please sign in to comment.