Check if this is empty (size and fee are 0). */
| 100 | |
| 101 | /** Check if this is empty (size and fee are 0). */ |
| 102 | bool inline IsEmpty() const noexcept { |
| 103 | return size == 0; |
| 104 | } |
| 105 | |
| 106 | /** Add fee and size of another FeeFrac to this one. */ |
| 107 | void inline operator+=(const FeeFrac& other) noexcept |
no outgoing calls