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

add reference id for idempotent refence counter operations #100

Draft
wants to merge 15 commits into
base: master
Choose a base branch
from
Draft
57 changes: 40 additions & 17 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,49 @@ module github.com/RTradeLtd/TxPB/v3
go 1.13

require (
github.com/RTradeLtd/go-libp2p-tls v0.2.3
github.com/RTradeLtd/go-libp2p-tls v0.2.4
github.com/davidlazar/go-crypto v0.0.0-20200604182044-b73af7476f6c // indirect
github.com/gogo/protobuf v1.3.1
github.com/golang/protobuf v1.3.5 // indirect
github.com/google/go-cmp v0.3.1 // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
github.com/golang/mock v1.4.3 // indirect
github.com/google/go-cmp v0.5.0 // indirect
github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect
github.com/ipfs/go-bitswap v0.2.19 // indirect
github.com/ipfs/go-block-format v0.0.2
github.com/ipfs/go-cid v0.0.5
github.com/ipfs/go-datastore v0.4.4 // indirect
github.com/ipfs/go-blockservice v0.1.3 // indirect
github.com/ipfs/go-cid v0.0.6
github.com/ipfs/go-ipfs-blockstore v1.0.0 // indirect
github.com/ipfs/go-ipld-cbor v0.0.4 // indirect
github.com/ipfs/go-ipld-format v0.2.0
github.com/ipfs/go-merkledag v0.3.1
github.com/libp2p/go-libp2p-core v0.5.1
github.com/multiformats/go-multiaddr v0.2.1
github.com/multiformats/go-multiaddr-net v0.1.4
github.com/ipfs/go-log/v2 v2.1.1 // indirect
github.com/ipfs/go-merkledag v0.3.2
github.com/kr/text v0.2.0 // indirect
github.com/libp2p/go-libp2p v0.10.0 // indirect
github.com/libp2p/go-libp2p-core v0.6.0
github.com/libp2p/go-libp2p-quic-transport v0.6.0 // indirect
github.com/libp2p/go-libp2p-record v0.1.3 // indirect
github.com/lucas-clemente/quic-go v0.17.1 // indirect
github.com/multiformats/go-multiaddr v0.2.2
github.com/multiformats/go-multiaddr-net v0.1.5
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/onsi/ginkgo v1.13.0 // indirect
github.com/pkg/errors v0.9.1
go.uber.org/zap v1.14.1
golang.org/x/crypto v0.0.0-20200406173513-056763e48d71 // indirect
github.com/polydawn/refmt v0.0.0-20190807091052-3d65705ee9f1 // indirect
github.com/smartystreets/assertions v1.1.1 // indirect
github.com/smartystreets/goconvey v1.6.4 // indirect
github.com/warpfork/go-wish v0.0.0-20200122115046-b9ea61034e4a // indirect
github.com/whyrusleeping/cbor-gen v0.0.0-20200504204219-64967432584d // indirect
go.opencensus.io v0.22.4 // indirect
go.uber.org/zap v1.15.0
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e // indirect
golang.org/x/sys v0.0.0-20200409092240-59c9f1ba88fa // indirect
golang.org/x/tools v0.0.0-20200413015812-1f08ef6002a8 // indirect
google.golang.org/genproto v0.0.0-20200413115906-b5235f65be36 // indirect
google.golang.org/grpc v1.28.1
gopkg.in/yaml.v2 v2.2.8 // indirect
golang.org/x/mod v0.3.0 // indirect
golang.org/x/net v0.0.0-20200602114024-627f9648deb9 // indirect
golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a // indirect
golang.org/x/text v0.3.3 // indirect
golang.org/x/tools v0.0.0-20200619023621-037be6a06566 // indirect
google.golang.org/genproto v0.0.0-20200619004808-3e7fca5c55db // indirect
google.golang.org/grpc v1.29.1
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
honnef.co/go/tools v0.0.1-2020.1.4 // indirect
)
552 changes: 523 additions & 29 deletions go.sum

Large diffs are not rendered by default.

7 changes: 3 additions & 4 deletions go/admin.pb.go

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

Loading