Used to return detailed information about a feerate bucket */
| 54 | |
| 55 | /* Used to return detailed information about a feerate bucket */ |
| 56 | struct EstimatorBucket |
| 57 | { |
| 58 | double start = -1; |
| 59 | double end = -1; |
| 60 | double withinTarget = 0; |
| 61 | double totalConfirmed = 0; |
| 62 | double inMempool = 0; |
| 63 | double leftMempool = 0; |
| 64 | }; |
| 65 | |
| 66 | /* Used to return detailed information about a fee estimate calculation */ |
| 67 | struct EstimationResult |