From 8bef82cbf4015e07629c0196e571692c0e6349de Mon Sep 17 00:00:00 2001 From: Albin Coquereau Date: Tue, 17 Oct 2023 17:50:59 +0200 Subject: [PATCH 1/2] Revert "changes: add entry for RPC version bumping" This reverts commit bffdb975421c5468c78dbada12ad3082da441b80. --- CHANGES.rst | 5 ----- 1 file changed, 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 1b16c34edb6f..c4e3378522eb 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -28,11 +28,6 @@ General Node ---- -- Bump RPCs ``POST ../helpers/parse/operations``, ``POST - ../helpers/scripts/run_operation`` and ``POST - ../helpers/scripts/simulate_operation`` default version to version ``1``. - Version ``0`` can still be used with ``?version=0`` argument. (MR :gl:`!9840`) - - **Breaking change** Removed the deprecated ``endorsing_rights`` RPC, use ``attestation_rights`` instead. (MR :gl:`!9849`) -- GitLab From 584d2d05cc4352fc498fe7bcbd70b9fa94e5324b Mon Sep 17 00:00:00 2001 From: Albin Coquereau Date: Tue, 17 Oct 2023 17:51:20 +0200 Subject: [PATCH 2/2] Revert "plugin: increase RPC version default value" This reverts commit 15b3d5f577ab40e35d42c8d2deb878bf58765c2f. --- src/proto_alpha/lib_plugin/RPC.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto_alpha/lib_plugin/RPC.ml b/src/proto_alpha/lib_plugin/RPC.ml index 2b1a9bd15344..25fa06038a5e 100644 --- a/src/proto_alpha/lib_plugin/RPC.ml +++ b/src/proto_alpha/lib_plugin/RPC.ml @@ -38,7 +38,7 @@ let version_of_string = function | "1" -> Ok Version_1 | _ -> Error "Cannot parse version (supported versions \"0\" and \"1\")" -let default_operations_version = Version_1 +let default_operations_version = Version_0 let version_arg = let open RPC_arg in -- GitLab