class Bitcoin::Message::GetCFilters

getcfilters message for BIP-157 github.com/bitcoin/bips/blob/master/bip-0157.mediawiki#getcfilters

Constants

COMMAND

Attributes

filter_type[RW]
start_height[RW]
stop_hash[RW]

Public Class Methods

new(filter_type, start_height, stop_hash) click to toggle source
# File lib/bitcoin/message/get_cfilters.rb, line 16
def initialize(filter_type, start_height, stop_hash)
  @filter_type = filter_type
  @start_height = start_height
  @stop_hash = stop_hash
end