mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
* 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
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