class Straight::Order

Instances of this class are generated when we'd like to start watching some addresses to check whether a transaction containing a certain amount has arrived to it.

It is worth noting that instances do not know how store themselves anywhere, so as the class is written here, those instances are only supposed to exist in memory. Storing orders is entirely up to you.

Public Class Methods

new() click to toggle source
# File lib/straight/order.rb, line 233
def initialize
  @status = 0
end