Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Base grpctee #71

Merged
merged 2 commits into from
Aug 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion examples/node/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import (
"time"

p2pgo "github.com/CESSProject/p2p-go"
"github.com/CESSProject/p2p-go/config"
"github.com/CESSProject/p2p-go/core"
"github.com/CESSProject/p2p-go/out"
"golang.org/x/time/rate"
Expand Down Expand Up @@ -43,7 +44,7 @@ func main() {
p2pgo.BootPeers([]string{
"_dnsaddr.boot-kldr-testnet.cess.cloud",
}),
p2pgo.ProtocolPrefix("/kldr-testnet"),
p2pgo.ProtocolPrefix(config.TestnetProtocolPrefix),
)
if err != nil {
panic(err)
Expand Down
68 changes: 34 additions & 34 deletions pb/pois-service-api.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pb/pois-service-api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ message RequestBatchVerify {

message ResponseBatchVerify {
bool batch_verify_result = 1;
bytes tee_peer_id = 2;
bytes tee_account_id = 2;
repeated uint64 service_bloom_filter = 3;
bytes signature = 4;
}
Expand Down