Skip to content

Commit

Permalink
fix: transactions endpoint (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xkorin authored May 18, 2024
1 parent e9c68f9 commit bfbe55e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brownie_safe.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def pending_transactions(self) -> List[SafeTx]:
"""
Retrieve pending transactions from the transaction service.
"""
results = self.transaction_service._get_request(f'/api/v1/safes/{self.address}/transactions/').json()['results']
results = self.transaction_service._get_request(f'/api/v1/safes/{self.address}/multisig-transactions/').json()['results']
nonce = self.retrieve_nonce()
transactions = [
self.build_multisig_tx(
Expand Down

0 comments on commit bfbe55e

Please sign in to comment.