class Array

Public Instance Methods

with_height(min, max) click to toggle source
# File lib/bitcoin/store/utxo_db.rb, line 197
def with_height(min, max)
  select { |u| u.block_height >= min && u.block_height <= max }
end