Skip to content

Commit

Permalink
fix method name
Browse files Browse the repository at this point in the history
  • Loading branch information
feltroidprime committed Sep 1, 2022
1 parent 00adcf3 commit 17d7c26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ async def publish_open_oracle_entries_all_publishers(
]
return await self.send_transactions(calls=calls)

async def publish_open_oracle_entries_all_publishers(
async def publish_open_oracle_entries_all_publishers_sequential(
self, assets=["btc", "eth", "dai"]
) -> hex:
results_okx = await self.publish_open_oracle_entries_okx_sequential(assets)
Expand Down
2 changes: 1 addition & 1 deletion client/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def main():

assets = ["btc", "eth", "snx"]

results = await c.publish_open_oracle_entries_all_publishers(assets)
results = await c.publish_open_oracle_entries_all_publishers_sequential(assets)

for k in results:
print(f"Published latest Open Oracle {k} data with tx: {results[k]}")
Expand Down

0 comments on commit 17d7c26

Please sign in to comment.