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

assert.gno

0.11 Kb · 7 lines
1package ucs03_zkgm
2
3func assertIsRlmCurrent(_ int, rlm realm) {
4	if !rlm.IsCurrent() {
5		panic(errSpoofedRealm)
6	}
7}