Files
rippled/src/ripple
Scott Schurr ef51128270 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.
2015-09-03 11:43:25 -07:00
..
2015-07-31 17:39:03 -07:00
2015-08-18 08:48:16 -07:00
2015-07-31 17:39:03 -07:00
2015-08-18 11:16:18 -07:00
2015-08-18 11:16:18 -07:00
2015-07-31 17:39:03 -07:00
2015-08-18 11:16:18 -07:00
2015-08-18 11:16:17 -07:00
2015-07-31 17:30:56 -07:00
2013-11-15 11:29:45 -08:00

Newest Style

Each folder contains a single module following the newest style:

  • One class per header
  • As much implementation hidden as possible
  • All major interfaces are abstract
  • Every class is documented
  • Each module focuses on solving one problem