From 53d3933b869d34948a63fab3c270cec7209982e0 Mon Sep 17 00:00:00 2001 From: James Riehl <33920192+jrriehl@users.noreply.github.com> Date: Mon, 16 Jan 2023 15:52:48 +0000 Subject: [PATCH] release: v0.6.1 (#208) * feat: add debug support for scripts * feat: add config for timeout_commit --- src/jenesis/cmd/run.py | 9 +++++++-- src/jenesis/network/__init__.py | 6 +++++- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/src/jenesis/cmd/run.py b/src/jenesis/cmd/run.py index 1fa8a41..10585d8 100644 --- a/src/jenesis/cmd/run.py +++ b/src/jenesis/cmd/run.py @@ -16,8 +16,13 @@ def run(args: argparse.Namespace): with network_context(profile.network, cfg.project_name, profile.name): shell_globals = load_shell_globals(cfg, profile) - with open(args.script_path, encoding="utf-8") as script: - exec(script.read(), shell_globals) + with open(args.script_path, encoding="utf-8") as file: + code = compile( + file.read(), + os.path.basename(args.script_path), + 'exec', + ) + exec(code, shell_globals) def add_run_command(parser): diff --git a/src/jenesis/network/__init__.py b/src/jenesis/network/__init__.py index cd26335..e3a8336 100644 --- a/src/jenesis/network/__init__.py +++ b/src/jenesis/network/__init__.py @@ -20,6 +20,7 @@ DEFAULT_GENESIS_ACCOUNT = "fetch1gns5lphdk5ew5lnre7ulzv8s8k9dr9eyqvgj0w" DEFAULT_DENOMINATION = "atestfet" DEFAULT_CLI_BINARY = "fetchd" +DEFAULT_TIMEOUT_COMMIT = "5s" LOCALNODE_CONFIG_DIR = os.path.join(os.getcwd(), ".localnode") @@ -44,6 +45,7 @@ def __init__( password: Optional[str] = None, moniker: Optional[str] = None, genesis_accounts: Optional[List[str]] = None, + timeout_commit: Optional[str] = None, debug_trace: bool = True, ): super().__init__( @@ -64,6 +66,7 @@ def __init__( self.password = password or DEFAULT_PASSWORD self.moniker = moniker or DEFAULT_MONIKER self.genesis_accounts = genesis_accounts or [DEFAULT_GENESIS_ACCOUNT] + self.timeout_commit = timeout_commit or DEFAULT_TIMEOUT_COMMIT self.debug_trace = debug_trace @classmethod @@ -141,8 +144,9 @@ def _make_entrypoint_script(self) -> List[str]: f'echo "$PASSWORD" |{self.network.cli_binary} add-genesis-account $({self.network.cli_binary} keys show $VALIDATOR_KEY_NAME -a) 100000000000000000000000$DENOM', f'echo "$PASSWORD" |{self.network.cli_binary} gentx $VALIDATOR_KEY_NAME 10000000000000000000000$DENOM --chain-id $CHAIN_ID', f"{self.network.cli_binary} collect-gentxs", + f'sed -i "s/stake/{self.network.fee_denomination}/" ~/.{self.network.cli_binary}/config/genesis.json', + f'''sed -i 's/timeout_commit = "5s"/timeout_commit = "{self.network.timeout_commit}"/' ~/.{self.network.cli_binary}/config/config.toml''', # Enable rest-api - f'sed -i "s/stake/atestfet/" ~/.{self.network.cli_binary}/config/genesis.json', f'sed -i "s/enable = false/enable = true/" ~/.{self.network.cli_binary}/config/app.toml', f'sed -i "s/swagger = false/swagger = true/" ~/.{self.network.cli_binary}/config/app.toml', 'fi',