Sha256: 00fb4fe4b09239c149f8089711de334dd73444c07cb335eb2bcb89fb14622a65

Contents?: true

Size: 365 Bytes

Versions: 10

Compression:

Stored size: 365 Bytes

Contents

module Tapyrus
  module Message
    # notfound message
    # https://bitcoin.org/en/developer-reference#notfound
    class NotFound < Base
      include InventoriesParser
      extend InventoriesParser

      attr_reader :inventories

      COMMAND = 'notfound'

      def initialize(inventories = [])
        @inventories = inventories
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
tapyrus-0.3.4 lib/tapyrus/message/not_found.rb
tapyrus-0.3.3 lib/tapyrus/message/not_found.rb
tapyrus-0.3.2 lib/tapyrus/message/not_found.rb
tapyrus-0.3.1 lib/tapyrus/message/not_found.rb
tapyrus-0.3.0 lib/tapyrus/message/not_found.rb
tapyrus-0.2.13 lib/tapyrus/message/not_found.rb
tapyrus-0.2.12 lib/tapyrus/message/not_found.rb
tapyrus-0.2.10 lib/tapyrus/message/not_found.rb
tapyrus-0.2.9 lib/tapyrus/message/not_found.rb
tapyrus-0.2.8 lib/tapyrus/message/not_found.rb