Sha256: dfdd4d1defedd7867b44b3adc0223fbf680ebefd7693df27893389ff9407b622

Contents?: true

Size: 323 Bytes

Versions: 2

Compression:

Stored size: 323 Bytes

Contents

module SynapsePayments
  class Node

    attr_reader :transactions

    def initialize(client, user_id, node_id, oauth_key)
      @client = client
      @user_id = user_id
      @node_id = node_id
      @oauth_key = oauth_key
      @transactions = Transactions.new(@client, user_id, node_id, oauth_key)
    end

  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
synapse_payments-0.1.1 lib/synapse_payments/node.rb
synapse_payments-0.1.0 lib/synapse_payments/node.rb