class Toshi::Transaction

Public Class Methods

find(identifier) click to toggle source
# File lib/toshi/transaction.rb, line 4
def find(identifier)
  response = client.get '/transactions/'+identifier.to_s
  create_one(response)
end
unconfirmed() click to toggle source
# File lib/toshi/transaction.rb, line 9
def unconfirmed
  response = client.get '/transactions/unconfirmed'
  create_many(response)
end