class Blockchain::PaymentResponse
Attributes
message[R]
notice[R]
tx_hash[R]
Public Class Methods
new(message, tx_hash, notice)
click to toggle source
# File lib/blockchain/wallet.rb, line 150 def initialize(message, tx_hash, notice) @message = message @tx_hash = tx_hash @notice = notice end