mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
13 lines
202 B
Protocol Buffer
13 lines
202 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package ethereum.testing;
|
||
|
|
||
|
message TestMessage {
|
||
|
string foo = 1;
|
||
|
}
|
||
|
|
||
|
// Used in shared/p2p/feed_example_test.go
|
||
|
message Puzzle {
|
||
|
string challenge = 1;
|
||
|
string answer = 2;
|
||
|
}
|