6 lines
85 B
Ruby
6 lines
85 B
Ruby
module ApplicationHelper
|
|
def sats_to_btc(sats)
|
|
sats.to_f / 100000000
|
|
end
|
|
end
|