class Blockchain::WalletAddress

Attributes

address[R]
balance[R]
label[R]
total_received[R]

Public Class Methods

new(balance, address, label, total_received) click to toggle source
# File lib/blockchain/wallet.rb, line 137
def initialize(balance, address, label, total_received)
        @balance = balance
        @address = address
        @label = label
        @total_received = total_received
end