Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #219 from primevprotocol/p2p_response.0
Browse files Browse the repository at this point in the history
feat: p2p layer enhancements to send headers and errors
  • Loading branch information
aloknerurkar authored Mar 21, 2024
2 parents 6d12711 + 51e9c45 commit b5b1bb0
Show file tree
Hide file tree
Showing 65 changed files with 4,062 additions and 2,711 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@ build: bin

bin:
mkdir $@

bufgen:
cd rpc && buf generate -o ../
cd messages && buf generate -o ../
4 changes: 4 additions & 0 deletions buf.work.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
version: v1
directories:
- rpc
- messages
5 changes: 0 additions & 5 deletions buf.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion examples/biddercli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strconv"
"time"

pb "github.com/primevprotocol/mev-commit/gen/go/rpc/bidderapi/v1"
pb "github.com/primevprotocol/mev-commit/gen/go/bidderapi/v1"
"github.com/urfave/cli/v2"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"
Expand Down
2 changes: 1 addition & 1 deletion examples/provideremulator/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"fmt"
"log/slog"

providerapiv1 "github.com/primevprotocol/mev-commit/gen/go/rpc/providerapi/v1"
providerapiv1 "github.com/primevprotocol/mev-commit/gen/go/providerapi/v1"
"google.golang.org/grpc"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/provideremulator/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"os"

"github.com/primevprotocol/mev-commit/examples/provideremulator/client"
providerapiv1 "github.com/primevprotocol/mev-commit/gen/go/rpc/providerapi/v1"
providerapiv1 "github.com/primevprotocol/mev-commit/gen/go/providerapi/v1"
)

var (
Expand Down
Loading

0 comments on commit b5b1bb0

Please sign in to comment.