tutus-chain/cli/smartcontract/testdata/rpcbindings/notifications/notifications.go

34 lines
683 B
Go
Executable File

package structs
import (
"git.marketally.com/tutus-one/tutus-chain/pkg/interop"
"git.marketally.com/tutus-one/tutus-chain/pkg/interop/runtime"
)
func Main() {
runtime.Notify("! complicated name %$#", "str1")
}
func CrazyMap() {
runtime.Notify("SomeMap", map[int][]map[string][]interop.Hash160{})
}
func Struct() {
runtime.Notify("SomeStruct", struct {
I int
B bool
}{I: 123, B: true})
}
func Array() {
runtime.Notify("SomeArray", [][]int{})
}
// UnexportedField emits notification with unexported field that must be converted
// to exported in the resulting RPC binding.
func UnexportedField() {
runtime.Notify("SomeUnexportedField", struct {
i int
}{i: 123})
}