Search Apps Documentation Source Content File Folder Download Copy Actions Download State String Boolean Number Struct Map Slice Pointer Function Closure Reference Nil Package Type Interface Unknown

subtests.gno

0.24 Kb · 18 lines
 1package subtests
 2
 3import (
 4	"chain/runtime"
 5	"chain/runtime/unsafe"
 6)
 7
 8func GetCurrentRealm() runtime.Realm {
 9	return unsafe.CurrentRealm()
10}
11
12func GetPreviousRealm() runtime.Realm {
13	return unsafe.PreviousRealm()
14}
15
16func Exec(fn func()) {
17	fn()
18}