From 4c7243157f8b853f6ff4f2b304c53718e88a3cf6 Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Tue, 14 Oct 2014 13:10:02 -0500 Subject: [PATCH] Make move and setaccount unsupported methods. We no longer need to lie about supporting these in the future as they will be impossible to implement correctly with the upcomming HD wallet. --- rpcserver.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcserver.go b/rpcserver.go index cc0a36f..a4285b8 100644 --- a/rpcserver.go +++ b/rpcserver.go @@ -1372,12 +1372,12 @@ var rpcHandlers = map[string]requestHandler{ "getwalletinfo": Unimplemented, "importwallet": Unimplemented, "listaddressgroupings": Unimplemented, - "move": Unimplemented, - "setaccount": Unimplemented, // Reference methods which can't be implemented by btcwallet due to // design decision differences "encryptwallet": Unsupported, + "move": Unsupported, + "setaccount": Unsupported, // Extensions to the reference client JSON-RPC API "exportwatchingwallet": ExportWatchingWallet,