Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit 6d2236a

Browse files
committed
Fix incorrect error message validating listing signature
1 parent 872f749 commit 6d2236a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/listings.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1008,7 +1008,7 @@ func verifySignaturesOnListing(sl *pb.SignedListing) error {
10081008
case noSigError:
10091009
return errors.New("Contract does not contain listing signature")
10101010
case invalidSigError:
1011-
return errors.New("Buyer's guid signature on contact failed to verify")
1011+
return errors.New("Vendor's identity signature on contact failed to verify")
10121012
case matchKeyError:
10131013
return errors.New("Public key in order does not match reported buyer ID")
10141014
default:

0 commit comments

Comments
 (0)