Some checks failed
continuous-integration/drone/push Build is failing
... so that clients can use the same property with all balances
12 lines
267 B
Ruby
12 lines
267 B
Ruby
module BtcpayManager
|
|
class FetchLightningWalletBalance < BtcpayManagerService
|
|
def call
|
|
res = get "stores/#{store_id}/lightning/BTC/balance"
|
|
|
|
{
|
|
confirmed_balance: res["offchain"]["local"].to_i / 1000 # msats to sats
|
|
}
|
|
end
|
|
end
|
|
end
|