smartcontract: remove unused structures

Removed following unused structures:
	-smartcontract.ContextItem
	-smartcontract.Signature
	-smartcontract.ParameterContext
This commit is contained in:
Anna Shaleva 2020-02-26 14:31:07 +03:00
parent 535f391550
commit b3621d4a86

View file

@ -369,20 +369,4 @@ func NewParameterFromString(in string) (*Parameter, error) {
return nil, err
}
return res, nil
}
// ContextItem represents a transaction context item.
type ContextItem struct {
Script util.Uint160
Parameters []Parameter
Signatures []Signature
}
// Signature represents a transaction signature.
type Signature struct {
Data []byte
PublicKey []byte
}
// ParameterContext holds the parameter context.
type ParameterContext struct{}
}