forked from TrueCloudLab/neoneo-go
12 lines
228 B
Go
12 lines
228 B
Go
|
package management
|
||
|
|
||
|
import "github.com/nspcc-dev/neo-go/pkg/interop"
|
||
|
|
||
|
// Contract represents deployed contract.
|
||
|
type Contract struct {
|
||
|
ID int
|
||
|
UpdateCounter int
|
||
|
Hash interop.Hash160
|
||
|
NEF []byte
|
||
|
}
|