Files
rippled/src/ripple
Edward Hennis 5b733fb485 Remove Transactor::mFeeDue member variable
* mFeeDue is only used in one place by one derived class, so
  only compute it as a local in that function.
* The baseFee needs to be calculated outside of the Transactor class
  because, it can change during transaction processing, and the function
  is static, so we need to be sure to call the right version
* Rename Transactor::calculateFee to minimumFee
2018-06-19 11:25:20 -07:00
..
2018-04-08 01:52:11 -07:00
2018-06-19 09:32:54 -07:00
2018-04-08 01:52:12 -07:00
2018-06-01 13:29:52 -04:00
2018-06-19 09:32:54 -07:00
2018-06-01 13:29:52 -04:00
2018-06-01 13:29:57 -04:00
2018-04-08 01:52:12 -07:00
2018-06-19 09:32:54 -07:00
2018-04-08 01:52:12 -07: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