mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-27 13:58:05 +00:00
rpc: remove Main func from test contract
This commit is contained in:
parent
685d44dbc1
commit
84c148575d
3 changed files with 2 additions and 6 deletions
|
@ -51,8 +51,8 @@ type rpcTestCase struct {
|
||||||
check func(t *testing.T, e *executor, result interface{})
|
check func(t *testing.T, e *executor, result interface{})
|
||||||
}
|
}
|
||||||
|
|
||||||
const testContractHash = "6e2d823c81589871590653a100c7e9bdf9c94344"
|
const testContractHash = "36c3b0c85d98607db00b711885ec3e411d9b1672"
|
||||||
const deploymentTxHash = "3b434127495a6dd0e786a2e0f04696009cd6e6e5f9b930f0e79356638532096c"
|
const deploymentTxHash = "dcf4fe429ec84947361c86c2192b14641be7f0c6e2bdf8d150fad731160ed386"
|
||||||
|
|
||||||
var rpcTestCases = map[string][]rpcTestCase{
|
var rpcTestCases = map[string][]rpcTestCase{
|
||||||
"getapplicationlog": {
|
"getapplicationlog": {
|
||||||
|
|
4
pkg/rpc/server/testdata/test_contract.go
vendored
4
pkg/rpc/server/testdata/test_contract.go
vendored
|
@ -10,10 +10,6 @@ const (
|
||||||
decimals = 2
|
decimals = 2
|
||||||
)
|
)
|
||||||
|
|
||||||
func Main(operation string, args []interface{}) interface{} {
|
|
||||||
panic("invoking via Main is no longer supported") // catch possible bugs
|
|
||||||
}
|
|
||||||
|
|
||||||
func Init() bool {
|
func Init() bool {
|
||||||
ctx := storage.GetContext()
|
ctx := storage.GetContext()
|
||||||
h := runtime.GetExecutingScriptHash()
|
h := runtime.GetExecutingScriptHash()
|
||||||
|
|
BIN
pkg/rpc/server/testdata/testblocks.acc
vendored
BIN
pkg/rpc/server/testdata/testblocks.acc
vendored
Binary file not shown.
Loading…
Reference in a new issue