Browse Source

fix crypto tests

pull/1782/head
Liamsi 7 years ago
parent
commit
587505d4d2
3 changed files with 4 additions and 4 deletions
  1. +2
    -2
      crypto/README.md
  2. +1
    -1
      crypto/example_test.go
  3. +1
    -1
      crypto/priv_key_test.go

+ 2
- 2
crypto/README.md View File

@ -1,9 +1,9 @@
# go-crypto [![GoDoc](https://godoc.org/github.com/tendermint/go-crypto?status.svg)](https://godoc.org/github.com/tendermint/go-crypto)
# go-crypto
go-crypto is the cryptographic package adapted for Tendermint's uses
## Importing it
`import "github.com/tendermint/go-crypto"`
`import "github.com/tendermint/tendermint/crypto"`
## Binary encoding


+ 1
- 1
crypto/example_test.go View File

@ -17,7 +17,7 @@ package crypto_test
import (
"fmt"
"github.com/tendermint/go-crypto"
"github.com/tendermint/tendermint/crypto"
)
func ExampleSha256() {


+ 1
- 1
crypto/priv_key_test.go View File

@ -4,7 +4,7 @@ import (
"testing"
"github.com/stretchr/testify/assert"
crypto "github.com/tendermint/go-crypto"
"github.com/tendermint/tendermint/crypto"
)
func TestGeneratePrivKey(t *testing.T) {


Loading…
Cancel
Save