From a27aa09da5150e7ae0b3a7a94f050d55e08c42f0 Mon Sep 17 00:00:00 2001 From: coderofstuff <114628839+coderofstuff@users.noreply.github.com> Date: Fri, 22 Mar 2024 21:15:10 -0600 Subject: [PATCH] Move new RPC GetUtxoReturnAddress call to the end of enum --- rpc/core/src/api/ops.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rpc/core/src/api/ops.rs b/rpc/core/src/api/ops.rs index 30e13be88..2a6165c0b 100644 --- a/rpc/core/src/api/ops.rs +++ b/rpc/core/src/api/ops.rs @@ -86,8 +86,6 @@ pub enum RpcApiOps { GetCoinSupply, /// Get DAA Score timestamp estimate GetDaaScoreTimestampEstimate, - /// Get UTXO Return Addresses - GetUtxoReturnAddress, // Subscription commands for starting/stopping notifications NotifyBlockAdded, @@ -116,6 +114,9 @@ pub enum RpcApiOps { VirtualDaaScoreChangedNotification, PruningPointUtxoSetOverrideNotification, NewBlockTemplateNotification, + + /// Get UTXO Return Addresses + GetUtxoReturnAddress, } impl RpcApiOps {