Sha256: c3d53cf753f60050bd7ccf4aa94da93fda390d9d249738b5294a581e162d472d
Contents?: true
Size: 570 Bytes
Versions: 15
Compression:
Stored size: 570 Bytes
Contents
module Bitcoin module Message # getcfheaders message for BIP-157 # https://github.com/bitcoin/bips/blob/master/bip-0157.mediawiki#getcfheaders class GetCFHeaders < Base include CFParser extend CFParser COMMAND = 'getcfheaders' attr_accessor :filter_type attr_accessor :start_height attr_accessor :stop_hash # little endian def initialize(filter_type, start_height, stop_hash) @filter_type = filter_type @start_height = start_height @stop_hash = stop_hash end end end end
Version data entries
15 entries across 15 versions & 1 rubygems