class SynapsePayments::Node

Attributes

transactions[R]

Public Class Methods

new(client, user_id, node_id, oauth_key, fingerprint) click to toggle source
# File lib/synapse_payments/node.rb, line 6
def initialize(client, user_id, node_id, oauth_key, fingerprint)
  @client = client
  @transactions = Transactions.new(@client, user_id, node_id, oauth_key, fingerprint)
end