class Wallet

Single Address Wallet

Attributes

address[R]

Public Class Methods

new( address ) click to toggle source
# File lib/shilling/wallet.rb, line 7
def initialize( address )
  @address = address
end

Public Instance Methods

generate_transaction( to, amount ) click to toggle source
# File lib/shilling/wallet.rb, line 11
def generate_transaction( to, amount )
  Tx.new( address, to, amount )
end