Browse Source

Move libs/async to internal/libs/async. (#7449)

pull/7450/head
M. J. Fromberger 2 years ago
committed by GitHub
parent
commit
da697089d0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 5 additions and 4 deletions
  1. +1
    -0
      CHANGELOG_PENDING.md
  2. +0
    -0
      internal/libs/async/async.go
  3. +0
    -0
      internal/libs/async/async_test.go
  4. +1
    -1
      internal/p2p/conn/secret_connection.go
  5. +1
    -1
      internal/p2p/conn/secret_connection_test.go
  6. +1
    -1
      privval/secret_connection.go
  7. +1
    -1
      test/fuzz/p2p/secretconnection/read_write.go

+ 1
- 0
CHANGELOG_PENDING.md View File

@ -27,6 +27,7 @@ Special thanks to external contributors on this release:
- Go API
- [libs/async] \#7449 Move library to internal. (@creachadair)
- [pubsub] \#7231 Remove unbuffered subscriptions and rework the Subscription interface. (@creachadair)
- [eventbus] \#7231 Move the EventBus type to the internal/eventbus package. (@creachadair)
- [blocksync] \#7046 Remove v2 implementation of the blocksync service and recactor, which was disabled in the previous release. (@tychoish)


libs/async/async.go → internal/libs/async/async.go View File


libs/async/async_test.go → internal/libs/async/async_test.go View File


+ 1
- 1
internal/p2p/conn/secret_connection.go View File

@ -25,8 +25,8 @@ import (
"github.com/tendermint/tendermint/crypto"
"github.com/tendermint/tendermint/crypto/ed25519"
"github.com/tendermint/tendermint/crypto/encoding"
"github.com/tendermint/tendermint/internal/libs/async"
"github.com/tendermint/tendermint/internal/libs/protoio"
"github.com/tendermint/tendermint/libs/async"
tmp2p "github.com/tendermint/tendermint/proto/tendermint/p2p"
)


+ 1
- 1
internal/p2p/conn/secret_connection_test.go View File

@ -21,7 +21,7 @@ import (
"github.com/tendermint/tendermint/crypto"
"github.com/tendermint/tendermint/crypto/ed25519"
"github.com/tendermint/tendermint/crypto/sr25519"
"github.com/tendermint/tendermint/libs/async"
"github.com/tendermint/tendermint/internal/libs/async"
tmrand "github.com/tendermint/tendermint/libs/rand"
)


+ 1
- 1
privval/secret_connection.go View File

@ -25,8 +25,8 @@ import (
"github.com/tendermint/tendermint/crypto"
"github.com/tendermint/tendermint/crypto/ed25519"
"github.com/tendermint/tendermint/crypto/encoding"
"github.com/tendermint/tendermint/internal/libs/async"
"github.com/tendermint/tendermint/internal/libs/protoio"
"github.com/tendermint/tendermint/libs/async"
tmprivval "github.com/tendermint/tendermint/proto/tendermint/privval"
)


+ 1
- 1
test/fuzz/p2p/secretconnection/read_write.go View File

@ -7,8 +7,8 @@ import (
"log"
"github.com/tendermint/tendermint/crypto/ed25519"
"github.com/tendermint/tendermint/internal/libs/async"
sc "github.com/tendermint/tendermint/internal/p2p/conn"
"github.com/tendermint/tendermint/libs/async"
)
func Fuzz(data []byte) int {


Loading…
Cancel
Save