aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/key.go
diff options
context:
space:
mode:
authorGustav Simonsson <gustav.simonsson@gmail.com>2015-01-28 12:12:57 +0800
committerGustav Simonsson <gustav.simonsson@gmail.com>2015-01-28 12:12:57 +0800
commit8d9752a557e33341a5fb73239dbae664b2f8aaa0 (patch)
treeb5e6e0f0e39e8915af4bb76ed8386dfb443415c9 /crypto/key.go
parent512ffa2bf4308b44aa6f43f25238b375b58d7dbc (diff)
downloadgo-tangerine-8d9752a557e33341a5fb73239dbae664b2f8aaa0.tar
go-tangerine-8d9752a557e33341a5fb73239dbae664b2f8aaa0.tar.gz
go-tangerine-8d9752a557e33341a5fb73239dbae664b2f8aaa0.tar.bz2
go-tangerine-8d9752a557e33341a5fb73239dbae664b2f8aaa0.tar.lz
go-tangerine-8d9752a557e33341a5fb73239dbae664b2f8aaa0.tar.xz
go-tangerine-8d9752a557e33341a5fb73239dbae664b2f8aaa0.tar.zst
go-tangerine-8d9752a557e33341a5fb73239dbae664b2f8aaa0.zip
Address pull request comments
* Use crypto.Sign instead of directly calling secp256k1 lib * Rename UserAccount to Account and Addr to Address (for consistency) * Change AccountManager.Sign to take ptr to Account instead of address byte array * Simplify copying of Accounts in Accounts() * PubkeyToAddress and GetEntropyCSPRNG now exported
Diffstat (limited to 'crypto/key.go')
-rw-r--r--crypto/key.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/key.go b/crypto/key.go
index f8f64c35c..b9ad34f47 100644
--- a/crypto/key.go
+++ b/crypto/key.go
@@ -102,7 +102,7 @@ func NewKey(rand io.Reader) *Key {
id := uuid.NewRandom()
key := &Key{
Id: id,
- Address: pubkeyToAddress(privateKeyECDSA.PublicKey),
+ Address: PubkeyToAddress(privateKeyECDSA.PublicKey),
PrivateKey: privateKeyECDSA,
}
return key