github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/x/wasm/keeper/m1compat.go (about) 1 package keeper 2 3 import ( 4 "runtime" 5 "testing" 6 ) 7 8 func SkipIfM1(t *testing.T) { 9 if runtime.GOARCH == "arm64" { 10 t.Skip("Skipping for M1: Signal Error, Stack Dump") 11 } 12 }