Skip to content

Commit

Permalink
Fixed Typo
Browse files Browse the repository at this point in the history
Signed-off-by: wuqiaomin <wuqiaomin2@huawei.com>
  • Loading branch information
wuqiaomin authored and C0rWin committed Apr 14, 2021
1 parent d001dbc commit 5d500ee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion integration/chaincode/module/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func (t *SimpleChaincode) Invoke(stub shim.ChaincodeStubInterface) pb.Response {
// Deletes an entity from its state
return t.delete(stub, args)
case "query":
// the old "Query" is now implemtned in invoke
// the old "Query" is now implemented in invoke
return t.query(stub, args)
case "respond":
// return with an error
Expand Down
2 changes: 1 addition & 1 deletion integration/chaincode/simple/chaincode.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func (t *SimpleChaincode) Invoke(stub shim.ChaincodeStubInterface) pb.Response {
// Deletes an entity from its state
return t.delete(stub, args)
case "query":
// the old "Query" is now implemtned in invoke
// the old "Query" is now implemented in invoke
return t.query(stub, args)
case "respond":
// return with an error
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func (t *SimpleChaincode) Invoke(stub shim.ChaincodeStubInterface) pb.Response {
// Deletes an entity from its state
return t.delete(stub, args)
case "query":
// the old "Query" is now implemtned in invoke
// the old "Query" is now implemented in invoke
return t.query(stub, args)
case "respond":
// return with an error
Expand Down

0 comments on commit 5d500ee

Please sign in to comment.