From f54a3ca97020417f55a3e7c49d3cbcc6404968ee Mon Sep 17 00:00:00 2001 From: Arthur Britto Date: Thu, 17 Jan 2013 14:15:23 -0800 Subject: [PATCH] Fix security for RPC validation_seed. --- src/cpp/ripple/RPCHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp/ripple/RPCHandler.cpp b/src/cpp/ripple/RPCHandler.cpp index 41c9c6062..c3d93f66c 100644 --- a/src/cpp/ripple/RPCHandler.cpp +++ b/src/cpp/ripple/RPCHandler.cpp @@ -2614,7 +2614,7 @@ Json::Value RPCHandler::doCommand(const Json::Value& jvRequest, int iRole) { "unl_score", &RPCHandler::doUnlScore, true, optNone }, { "validation_create", &RPCHandler::doValidationCreate, true, optNone }, - { "validation_seed", &RPCHandler::doValidationSeed, false, optNone }, + { "validation_seed", &RPCHandler::doValidationSeed, true, optNone }, { "wallet_accounts", &RPCHandler::doWalletAccounts, false, optCurrent }, { "wallet_propose", &RPCHandler::doWalletPropose, false, optNone },