subtests.gno

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