aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/sqlvm/runtime/functions.go
blob: 798f5a5735a30c2a0d20c79f50cb911ea8bcdf17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package runtime

import (
    "github.com/dexon-foundation/dexon/core/vm/sqlvm/common"
)

type fn func(*common.Context, []*Operand, uint64) (*Operand, error)

var (
    fnTable = map[string]fn{}
)