style: enable strict gofumpt (#15579)
This commit is contained in:
+2
-2
@@ -37,7 +37,7 @@ func (t testPubKey) Address() cryptotypes.Address { return t.address.Bytes() }
|
||||
|
||||
func (t testPubKey) Bytes() []byte { panic("not implemented") }
|
||||
|
||||
func (t testPubKey) VerifySignature(msg []byte, sig []byte) bool { panic("not implemented") }
|
||||
func (t testPubKey) VerifySignature(msg, sig []byte) bool { panic("not implemented") }
|
||||
|
||||
func (t testPubKey) Equals(key cryptotypes.PubKey) bool { panic("not implemented") }
|
||||
|
||||
@@ -53,7 +53,7 @@ func (msg *KVStoreTx) GetSignaturesV2() (res []txsigning.SignatureV2, err error)
|
||||
return res, nil
|
||||
}
|
||||
|
||||
func (msg *KVStoreTx) VerifySignature(msgByte []byte, sig []byte) bool {
|
||||
func (msg *KVStoreTx) VerifySignature(msgByte, sig []byte) bool {
|
||||
panic("implement me")
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user