Skip to content

Commit

Permalink
fix: get_api_confs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Dec 5, 2023
1 parent 69d582b commit a416b2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ape_safe/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def _all_transactions(self) -> Iterator[SafeApiTxData]:
url = data.get("next")

def get_confirmations(self, safe_tx_hash: SafeTxID) -> Iterator[SafeTxConfirmation]:
url = f"multisig-transactions/{str(safe_tx_hash.replace('8', '0'))}/confirmations"
url = f"multisig-transactions/{str(safe_tx_hash)}/confirmations"
while url:
response = self._get(url)
data = response.json()
Expand Down

0 comments on commit a416b2d

Please sign in to comment.