mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-02 18:12:15 +00:00
Fixed account.PubkeyEd25519 String() bug
This commit is contained in:
parent
687815f6ed
commit
2b39e56e75
@ -82,5 +82,5 @@ func (pubKey PubKeyEd25519) VerifyBytes(msg []byte, sig_ Signature) bool {
|
||||
}
|
||||
|
||||
func (pubKey PubKeyEd25519) String() string {
|
||||
return Fmt("PubKeyEd25519{%X}", pubKey)
|
||||
return Fmt("PubKeyEd25519{%X}", []byte(pubKey))
|
||||
}
|
||||
|
@ -58,7 +58,7 @@ func initDefaults() {
|
||||
App.SetDefault("RPC.HTTP.ListenAddr", "0.0.0.0:8081")
|
||||
|
||||
App.SetDefault("GenesisFile", rootDir+"/genesis.json")
|
||||
App.SetDefault("AddrbookFile", rootDir+"/addrbook.json")
|
||||
App.SetDefault("AddrBookFile", rootDir+"/addrbook.json")
|
||||
App.SetDefault("PrivValidatorfile", rootDir+"/priv_validator.json")
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user