From 9f65987ca28227b4ab1ce31b506d4076e95c9c23 Mon Sep 17 00:00:00 2001 From: Peter Harpending Date: Fri, 21 Oct 2022 05:17:04 -0600 Subject: [PATCH] base58 test generation in python --- bindings/typescript/test/testgen/b58.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bindings/typescript/test/testgen/b58.py b/bindings/typescript/test/testgen/b58.py index 9d68c3f..b707039 100644 --- a/bindings/typescript/test/testgen/b58.py +++ b/bindings/typescript/test/testgen/b58.py @@ -195,9 +195,9 @@ def format_cases_erl(cases): ########################### def main(): - c = simple_cases() + cases(100_000) - #print(format_cases_js(c)) - print(format_cases_erl(c)) + c = simple_cases() + cases(50) + print(format_cases_js(c)) + #print(format_cases_erl(c)) if __name__ == '__main__': main()