refactor: Rename x/vault -> x/dwn and x/service -> x/svc

This commit is contained in:
Prad Nukala
2024-11-25 15:44:55 -05:00
parent 711acd6bb8
commit 629ef72954
112 changed files with 22252 additions and 2167 deletions
+22
View File
@@ -0,0 +1,22 @@
package keeper_test
import (
"testing"
"github.com/onsonr/sonr/x/svc/types"
"github.com/stretchr/testify/require"
)
func TestGenesis(t *testing.T) {
f := SetupTest(t)
genesisState := &types.GenesisState{
Params: types.DefaultParams(),
}
f.k.InitGenesis(f.ctx, genesisState)
got := f.k.ExportGenesis(f.ctx)
require.NotNil(t, got)
}