module Bitsy

Constants

VERSION

Public Class Methods

configure() { |config| ... } click to toggle source
# File lib/bitsy.rb, line 23
def self.configure
  yield self.config
end
load_config(path) click to toggle source
# File lib/bitsy.rb, line 19
def self.load_config(path)
  self.config ||= Config.new(path)
end

Public Instance Methods

forward_threshold_amount() click to toggle source
# File lib/bitsy/config.rb, line 27
def forward_threshold_amount
  transaction_fee * transaction_fee_threshold_multiplier
end