class Blockchain::Output

Attributes

address[R]
n[R]
script[R]
spent[R]
tx_index[R]
value[R]

Public Class Methods

new(o) click to toggle source
# File lib/blockchain/blockexplorer.rb, line 307
def initialize(o)
        @n = o['n']
        @value = o['value']
        @address = o['addr']
        @tx_index = o['tx_index']
        @script = o['script']
        @spent = o['spent']
end