Skip to content
Snippets Groups Projects

Implement new wallet based on beekeeper

Merged Radosław Masłowski requested to merge rm-beekeepy into master
Compare and
26 files
+ 4376
113
Compare changes
  • Side-by-side
  • Inline
Files
26
@@ -11,7 +11,7 @@ import subprocess
from pathlib import Path
import test_tools as tt
from test_tools.__private import wallet
from test_tools.__private import old_wallet
class Parameter:
@@ -166,11 +166,11 @@ if __name__ == "__main__":
python_api = translator.generate_python_api()
replace_file_content_between_tags(
file_path=Path(wallet.__file__),
file_path=Path(old_wallet.__file__),
new_content=python_api,
begin_tag="# Begin of machine generated code",
end_tag="# End of machine generated code",
)
# Format generated code, (because code generated by above script do not follow our formatter code style).
subprocess.run(["black", wallet.__file__], check=False)
subprocess.run(["black", old_wallet.__file__], check=False)
Loading