akkounts/app/helpers/application_helper.rb

6 lines
85 B
Ruby

module ApplicationHelper
def sats_to_btc(sats)
sats.to_f / 100000000
end
end