class ArkEcosystem::Crypto::Configuration::Fee

The holder of fee configuration.

Public Class Methods

get(type) click to toggle source
# File lib/arkecosystem/crypto/configuration/fee.rb, line 20
def self.get(type)
  @fees[type]
end
set(type, fee) click to toggle source
# File lib/arkecosystem/crypto/configuration/fee.rb, line 24
def self.set(type, fee)
  @fees[type] = fee
end