cosmos-sdk/x/slashing/simulation/invariants.go

19 lines
395 B
Go
Raw Normal View History

package simulation
import (
"testing"
"github.com/stretchr/testify/require"
"github.com/cosmos/cosmos-sdk/baseapp"
"github.com/cosmos/cosmos-sdk/x/mock/simulation"
)
// AllInvariants tests all slashing invariants
func AllInvariants() simulation.Invariant {
return func(t *testing.T, app *baseapp.BaseApp, log string) {
// TODO Any invariants to check here?
require.Nil(t, nil)
}
}