Skip to content

Commit

Permalink
Merge pull request #43 from koinos/bump-deps
Browse files Browse the repository at this point in the history
Bump util, proto, log, and mq
  • Loading branch information
sgerbino authored Apr 9, 2024
2 parents cabf02a + ca02a9c commit c8d985a
Show file tree
Hide file tree
Showing 5 changed files with 1,172 additions and 51 deletions.
12 changes: 6 additions & 6 deletions cmd/koinos-transaction-store/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ import (
"github.com/dgraph-io/badger/v3"
log "github.com/koinos/koinos-log-golang/v2"
koinosmq "github.com/koinos/koinos-mq-golang"
"github.com/koinos/koinos-proto-golang/koinos"
"github.com/koinos/koinos-proto-golang/koinos/broadcast"
"github.com/koinos/koinos-proto-golang/koinos/rpc"
"github.com/koinos/koinos-proto-golang/koinos/rpc/transaction_store"
"github.com/koinos/koinos-proto-golang/v2/koinos"
"github.com/koinos/koinos-proto-golang/v2/koinos/broadcast"
"github.com/koinos/koinos-proto-golang/v2/koinos/rpc"
"github.com/koinos/koinos-proto-golang/v2/koinos/rpc/transaction_store"
"github.com/koinos/koinos-transaction-store/internal/trxstore"
util "github.com/koinos/koinos-util-golang"
util "github.com/koinos/koinos-util-golang/v2"
flag "github.com/spf13/pflag"
)

Expand Down Expand Up @@ -169,7 +169,7 @@ func main() {
}

if err != nil {
e := &rpc.ErrorResponse{Message: string(err.Error())}
e := &rpc.ErrorStatus{Message: string(err.Error())}
response.Response = &transaction_store.TransactionStoreResponse_Error{Error: e}
}

Expand Down
11 changes: 5 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ go 1.16

require (
github.com/dgraph-io/badger/v3 v3.2103.2
github.com/koinos/koinos-log-golang v1.0.1-0.20231002210928-929b5ecd5bc8
github.com/koinos/koinos-log-golang/v2 v2.0.0 // indirect
github.com/koinos/koinos-mq-golang v1.0.0
github.com/koinos/koinos-proto-golang v1.0.0
github.com/koinos/koinos-util-golang v1.0.0
github.com/koinos/koinos-log-golang/v2 v2.0.0
github.com/koinos/koinos-mq-golang v1.0.1
github.com/koinos/koinos-proto-golang/v2 v2.0.2
github.com/koinos/koinos-util-golang/v2 v2.0.1
github.com/spf13/pflag v1.0.3
go.uber.org/zap v1.17.0
google.golang.org/protobuf v1.27.1
google.golang.org/protobuf v1.30.0
)
Loading

0 comments on commit c8d985a

Please sign in to comment.