mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-27 06:25:51 +00:00
Enable simple multisign with a Feature (RIPD-182):
Eventually multisign will need to be enabled onto the network, at which point compiling it in or out will no longer be an option. In preparation, the compile guards are removed and multisign is being enabled with a Feature. You can locally enable a Feature using your config file. To enable multisign with your config file add a section like this: [features] MultiSign The exact spelling and capitalization of both "features" and "MultiSign" is important. If you don't get those right multisign will not be enabled. There is a minor issue. The "sign_for" and "submit_multisigned" RPC commands are only enabled if multisign is enabled. However those commands are still shown in the help message even if multisign is disabled. This is because the code that produces the help message doesn't read the config file (where the Features are kept). This problem will become irrelevant once multisign is enabled onto the network.
This commit is contained in:
@@ -72,8 +72,8 @@
|
||||
#include <ripple/rpc/handlers/RipplePathFind.cpp>
|
||||
#include <ripple/rpc/handlers/ServerInfo.cpp>
|
||||
#include <ripple/rpc/handlers/ServerState.cpp>
|
||||
#include <ripple/rpc/handlers/SignHandler.cpp>
|
||||
#include <ripple/rpc/handlers/SignFor.cpp>
|
||||
#include <ripple/rpc/handlers/SignHandler.cpp>
|
||||
#include <ripple/rpc/handlers/Stop.cpp>
|
||||
#include <ripple/rpc/handlers/Submit.cpp>
|
||||
#include <ripple/rpc/handlers/SubmitMultiSigned.cpp>
|
||||
|
||||
Reference in New Issue
Block a user