From 8cc68cbeb40bcc76d37204a3db8bed7c516689aa Mon Sep 17 00:00:00 2001 From: tim Date: Mon, 7 Oct 2024 22:30:39 -0400 Subject: [PATCH] mirrorprice fix --- src/dexorder/bin/mirror.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dexorder/bin/mirror.py b/src/dexorder/bin/mirror.py index 7186389..8999876 100644 --- a/src/dexorder/bin/mirror.py +++ b/src/dexorder/bin/mirror.py @@ -102,7 +102,7 @@ async def write_metadata( pools, mirror_pools ): for token in tokens: token['x'] = {'mock':True} with open(filename, 'w') as f: - generate_metadata(tokens, pool_dicts, f) + generate_metadata(tokens, pool_dicts, file=f) log.info(f'wrote {filename}')