| 84 | } |
| 85 | |
| 86 | uint64_t CBaseTx::GetFuelFee(CCacheWrapper &cw, int32_t height, uint32_t fuelRate) { |
| 87 | return (fuel == 0 || fuelRate == 0) ? 0 : std::ceil(fuel / 100.0f) * fuelRate; |
| 88 | } |
| 89 | |
| 90 | bool CBaseTx::CheckBaseTx(CTxExecuteContext &context) { |
| 91 | CValidationState &state = *context.pState; |
no outgoing calls
no test coverage detected