Correct error message in handleGetWorkSubmission.

Found by go vet.
This commit is contained in:
Dave Collins 2014-05-22 23:48:02 -05:00
parent b6af0a7a53
commit 342d0a536f

View file

@ -1743,7 +1743,7 @@ func handleGetWorkSubmission(s *rpcServer, hexData string) (interface{}, error)
if _, ok := err.(btcchain.RuleError); !ok {
return false, btcjson.Error{
Code: btcjson.ErrInternal.Code,
Message: fmt.Sprintf("Unexpected error while",
Message: fmt.Sprintf("Unexpected error while "+
"processing block: %v", err),
}
}