We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7989177 commit 902cf85Copy full SHA for 902cf85
src/aleph/vm/orchestrator/payment.py
@@ -29,7 +29,7 @@ async def fetch_balance_of_address(address: str) -> Decimal:
29
"""
30
31
async with aiohttp.ClientSession() as session:
32
- url = f"{settings.API_SERVER}/api/v0/{address}/balance"
+ url = f"{settings.API_SERVER}/api/v0/addresses/{address}/balance"
33
resp = await session.get(url)
34
35
# Consider the balance as null if the address is not found
0 commit comments