Merge pull request #1854 from karalabe/badhasherror-formatting-loop

core: fix a formatting loop in BadHashError
This commit is contained in:
Jeffrey Wilcke 2015-09-29 02:26:01 -07:00
commit 9b94076717

View File

@ -181,7 +181,7 @@ func IsValueTransferErr(e error) bool {
type BadHashError common.Hash
func (h BadHashError) Error() string {
return fmt.Sprintf("Found known bad hash in chain %x", h)
return fmt.Sprintf("Found known bad hash in chain %x", h[:])
}
func IsBadHashError(err error) bool {