fix: msg signing with delegated keys and send cli changes (#10056)

* fix msg signing with delegated keys and send cli changes

* make gen and docsgen

* address comments
This commit is contained in:
Shrenuj Bansal
2023-01-19 17:57:48 -05:00
committed by GitHub
parent 2335bed58a
commit 522e96f016
5 changed files with 68 additions and 12 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ func (delegatedSigner) Verify(sig []byte, a address.Address, msg []byte) error {
}
if maybeaddr != a {
return fmt.Errorf("signature did not match")
return fmt.Errorf("signature did not match maybeaddr: %s, signer: %s", maybeaddr, a)
}
return nil