mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-22 04:36:42 +00:00
KeyManager.KeyRing(): KeyPair => KeyRing
This commit is contained in:
parent
bb55307a9d
commit
4bd9e7efcc
1 changed files with 2 additions and 2 deletions
|
|
@ -30,8 +30,8 @@ func (k *KeyManager) KeyPair() *KeyPair {
|
||||||
return k.keyPair
|
return k.keyPair
|
||||||
}
|
}
|
||||||
|
|
||||||
func (k *KeyManager) KeyRing() *KeyPair {
|
func (k *KeyManager) KeyRing() *KeyRing {
|
||||||
return k.keyPair
|
return k.keyRing
|
||||||
}
|
}
|
||||||
|
|
||||||
func (k *KeyManager) PrivateKey() []byte {
|
func (k *KeyManager) PrivateKey() []byte {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue