class Nem::Model::MultisigSignatureTransaction
Attributes
other_account[R]
other_hash[R]
Public Class Methods
new_from_multisig_signature(hash)
click to toggle source
# File lib/nem/model/multisig_signature_transaction.rb, line 8 def self.new_from_multisig_signature(hash) attrs = common_part(hash).merge( other_hash: hash[:otherHash][:data], other_account: hash[:otherAccount] ) new(attrs) end