MCPcopy Create free account
hub / github.com/ElementsProject/lightning / amount_msat_to_sat

Function amount_msat_to_sat

common/amount.c:22–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20}
21
22bool amount_msat_to_sat(struct amount_sat *sat,
23 struct amount_msat msat)
24{
25 if (msat.millisatoshis % MSAT_PER_SAT)
26 return false;
27 sat->satoshis = msat.millisatoshis / MSAT_PER_SAT;
28 return true;
29}
30
31
32/* You can always truncate millisatoshis->satoshis. */

Callers 15

migrate_from_account_dbFunction · 0.85
calc_balanceFunction · 0.85
check_balancesFunction · 0.85
opt_set_satFunction · 0.85
peer_control.cFile · 0.85
param_msat_as_satFunction · 0.85
json_to_msat_to_satFunction · 0.85
psbt_createdFunction · 0.85
json_to_msat_as_satsFunction · 0.85
param_msat_as_satFunction · 0.85
json_to_msat_to_satFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected