Files
rippled/src/ripple
Nikolaos D. Bougalis 8d9dffcf84 Clarify Escrow semantics (RIPD-1571):
When creating an escrow, if the `CancelAfter` time is specified but
the `FinishAfter` is not, the resulting escrow can be immediately
completed using `EscrowFinish`. While this behavior is documented,
it is unintuitive and can be confusing for users.

This commit introduces a new fix amendment (fix1571) which prevents
the creation of new Escrow entries that can be finished immediately
and without any requirements.

Once the amendment is activated, creating a new Escrow will require
specifying the `FinishAfter` time explicitly or requires that a
cryptocondition be specified.
2018-03-24 12:52:40 -07:00
..
2018-03-24 12:52:40 -07:00
2017-03-06 14:59:32 -05:00
2018-03-01 15:59:40 -08:00
2018-01-17 10:00:20 -08:00
2018-02-13 09:08:14 -05:00
2017-07-11 12:18:17 -04:00
2018-01-17 13:43:54 -08:00
2018-01-17 13:43:54 -08:00
2018-03-02 07:37:15 -08:00

Ripple Source Guidelines

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