Constructors
Declared in <util/feefrac.h>
Construct an IsEmpty() FeeFrac.
constexpr
FeeFrac() noexcept;
» more...
Copy-construct a FeeFrac from another one.
constexpr
FeeFrac(FeeFrac const& other) noexcept = default;
» more...
Construct a FeeFrac with specified fee and size.
constexpr
FeeFrac(
int64_t f,
int32_t s) noexcept;
» more...
| Name | Description |
|---|---|
| other | The FeeFrac to copy. |
| f | The fee, in satoshis. |
| s | The size, in the caller's chosen unit. |