Browse Source

update package name

pull/1782/head
Jae Kwon 9 years ago
parent
commit
31a456c8d4
4 changed files with 7 additions and 8 deletions
  1. +1
    -1
      priv_key.go
  2. +3
    -4
      pub_key.go
  3. +2
    -2
      signature.go
  4. +1
    -1
      signature_test.go

+ 1
- 1
priv_key.go View File

@ -1,4 +1,4 @@
package account
package crypto
import (
"github.com/tendermint/ed25519"


+ 3
- 4
pub_key.go View File

@ -1,14 +1,13 @@
package account
package crypto
import (
"bytes"
"github.com/tendermint/ed25519"
"github.com/tendermint/ed25519/extra25519"
"golang.org/x/crypto/ripemd160"
"github.com/tendermint/go-wire"
. "github.com/tendermint/go-common"
"github.com/tendermint/go-wire"
"golang.org/x/crypto/ripemd160"
)
// PubKey is part of Account and Validator.


+ 2
- 2
signature.go View File

@ -1,10 +1,10 @@
package account
package crypto
import (
"fmt"
"github.com/tendermint/go-wire"
. "github.com/tendermint/go-common"
"github.com/tendermint/go-wire"
)
// Signature is a part of Txs and consensus Votes.


+ 1
- 1
signature_test.go View File

@ -1,4 +1,4 @@
package account
package crypto
import (
"bytes"


Loading…
Cancel
Save