diff --git a/multiversx_sdk_cli/localnet/node_config_toml.py b/multiversx_sdk_cli/localnet/node_config_toml.py index 641ba57d..c7da1afa 100644 --- a/multiversx_sdk_cli/localnet/node_config_toml.py +++ b/multiversx_sdk_cli/localnet/node_config_toml.py @@ -26,14 +26,8 @@ def patch_config(data: ConfigDict, config: ConfigRoot): data['EpochStartConfig'].update(epoch_start_config) # Always use the latest VM - virtual_machine: Dict[str, Any] = dict() - virtual_machine['Execution'] = dict() - virtual_machine['Execution']['WasmVMVersions'] = [{'StartEpoch': 0, 'Version': '*'}] - virtual_machine['Querying'] = dict() - virtual_machine['Querying']['NumConcurrentVMs'] = 1 - virtual_machine['Querying']['WasmVMVersions'] = [{'StartEpoch': 0, 'Version': '*'}] - - data['VirtualMachine'].update(virtual_machine) + data['VirtualMachine']['Execution']['WasmVMVersions'] = [{'StartEpoch': 0, 'Version': '*'}] + data['VirtualMachine']['Querying']['WasmVMVersions'] = [{'StartEpoch': 0, 'Version': '*'}] def patch_api(data: ConfigDict, config: ConfigRoot): diff --git a/pyproject.toml b/pyproject.toml index e4ce0cdb..6cd6a16d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "multiversx-sdk-cli" -version = "9.6.0" +version = "9.6.1" authors = [ { name="MultiversX" }, ]