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.
This commit is contained in:
Josh Rickmar 2014-10-14 13:10:02 -05:00
parent 2a5e8587f6
commit 4c7243157f

View file

@ -1372,12 +1372,12 @@ var rpcHandlers = map[string]requestHandler{
"getwalletinfo": Unimplemented, "getwalletinfo": Unimplemented,
"importwallet": Unimplemented, "importwallet": Unimplemented,
"listaddressgroupings": Unimplemented, "listaddressgroupings": Unimplemented,
"move": Unimplemented,
"setaccount": Unimplemented,
// Reference methods which can't be implemented by btcwallet due to // Reference methods which can't be implemented by btcwallet due to
// design decision differences // design decision differences
"encryptwallet": Unsupported, "encryptwallet": Unsupported,
"move": Unsupported,
"setaccount": Unsupported,
// Extensions to the reference client JSON-RPC API // Extensions to the reference client JSON-RPC API
"exportwatchingwallet": ExportWatchingWallet, "exportwatchingwallet": ExportWatchingWallet,