mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2024-11-19 18:00:39 +01:00
peerseeds.proto: remove protobuf definition
This was forgotten when removing `HttpDiscovery` via
commit 7f41553576
.
This commit is contained in:
parent
63b5e07726
commit
3bd191843a
File diff suppressed because it is too large
Load Diff
@ -1,28 +0,0 @@
|
||||
//
|
||||
// A simple protocol for describing signed sets of IP addresses. Intended to be distributed via HTTP[S] or in files.
|
||||
//
|
||||
|
||||
syntax = "proto2";
|
||||
|
||||
package org.bitcoin.crawler;
|
||||
|
||||
option java_package = "org.bitcoin.crawler";
|
||||
option java_outer_classname = "PeerSeedProtos";
|
||||
|
||||
message PeerSeedData {
|
||||
required string ip_address = 1;
|
||||
required uint32 port = 2;
|
||||
required uint32 services = 3;
|
||||
}
|
||||
|
||||
message PeerSeeds {
|
||||
repeated PeerSeedData seed = 1;
|
||||
required uint64 timestamp = 2; // seconds since UNIX epoch
|
||||
required string net = 3;
|
||||
}
|
||||
|
||||
message SignedPeerSeeds {
|
||||
required bytes peer_seeds = 1;
|
||||
required bytes signature = 2;
|
||||
required bytes pubkey = 3;
|
||||
}
|
Loading…
Reference in New Issue
Block a user