class Nem::Fee::Multisig

Public Class Methods

new(transaction) click to toggle source
# File lib/nem/fee/multisig.rb, line 4
def initialize(transaction)
  @transaction = transaction
end

Public Instance Methods

testnet?() click to toggle source

@return [Boolean]

# File lib/nem/fee/multisig.rb, line 19
def testnet?
  @transaction.network == :testnet
end
to_i() click to toggle source

@return [Integer] fee in micro XEM

# File lib/nem/fee/multisig.rb, line 14
def to_i
  value.to_i
end
value() click to toggle source

@return [Integer] fee in micro XEM

# File lib/nem/fee/multisig.rb, line 9
def value
  0.15 * 1_000_000
end