mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-26 20:30:59 +01:00
amount: helper method for adding sats to an msat amount
see title.
This commit is contained in:
parent
b0c9059602
commit
82c49db841
2 changed files with 15 additions and 0 deletions
|
@ -283,6 +283,18 @@ WARN_UNUSED_RESULT bool amount_sat_sub_msat(struct amount_msat *val,
|
|||
return amount_msat_sub(val, msata, b);
|
||||
}
|
||||
|
||||
WARN_UNUSED_RESULT bool amount_msat_add_sat(struct amount_msat *val,
|
||||
struct amount_msat a,
|
||||
struct amount_sat b)
|
||||
{
|
||||
struct amount_msat msatb;
|
||||
|
||||
if (!amount_sat_to_msat(&msatb, b))
|
||||
return false;
|
||||
|
||||
return amount_msat_add(val, a, msatb);
|
||||
}
|
||||
|
||||
bool amount_sat_eq(struct amount_sat a, struct amount_sat b)
|
||||
{
|
||||
return a.satoshis == b.satoshis;
|
||||
|
|
|
@ -70,6 +70,9 @@ WARN_UNUSED_RESULT bool amount_sat_sub(struct amount_sat *val,
|
|||
WARN_UNUSED_RESULT bool amount_msat_sub_sat(struct amount_msat *val,
|
||||
struct amount_msat a,
|
||||
struct amount_sat b);
|
||||
WARN_UNUSED_RESULT bool amount_msat_add_sat(struct amount_msat *val,
|
||||
struct amount_msat a,
|
||||
struct amount_sat b);
|
||||
WARN_UNUSED_RESULT bool amount_sat_sub_msat(struct amount_msat *val,
|
||||
struct amount_sat a,
|
||||
struct amount_msat b);
|
||||
|
|
Loading…
Add table
Reference in a new issue