add nextblock, 0slot support

This commit is contained in:
William
2025-04-02 13:39:59 +08:00
parent 2dc15b9020
commit ec03ed8edc
59 changed files with 5315 additions and 1855 deletions
+18
View File
@@ -0,0 +1,18 @@
syntax = "proto3";
import "google/protobuf/timestamp.proto";
package shared;
message Header {
google.protobuf.Timestamp ts = 1;
}
message Heartbeat {
uint64 count = 1;
}
message Socket {
string ip = 1;
int64 port = 2;
}