[#5] Fix comments

Signed-off-by: Ekaterina Lebedeva <ekaterina.lebedeva@yadro.com>
This commit is contained in:
Ekaterina Lebedeva 2023-08-15 17:34:44 +03:00
parent 2c71079944
commit c77afdc879
2 changed files with 9 additions and 3 deletions

View file

@ -16,11 +16,14 @@ import (
)
// ContractInvoker is a client for a specific contract.
// It also accumulates all executed instructions for evry method invokation.
// Original ContractInvoker: https://github.com/nspcc-dev/neo-go/blob/master/pkg/neotest/client.go
type ContractInvoker struct {
*neotest.ContractInvoker
Methods []Method
}
// Method maps method name with executed instructions.
type Method struct {
Name string
Instructions []InstrHash