@@ -7,6 +7,12 @@ import (
77 "os"
88 "testing"
99
10+ atypes "github.com/akash-network/akash-api/go/node/audit/v1beta3"
11+ ctypes "github.com/akash-network/akash-api/go/node/cert/v1beta3"
12+ dtypes "github.com/akash-network/akash-api/go/node/deployment/v1beta3"
13+ mtypes "github.com/akash-network/akash-api/go/node/market/v1beta4"
14+ ptypes "github.com/akash-network/akash-api/go/node/provider/v1beta3"
15+ taketypes "github.com/akash-network/akash-api/go/node/take/v1beta3"
1016 "github.com/cosmos/cosmos-sdk/x/authz"
1117 authzkeeper "github.com/cosmos/cosmos-sdk/x/authz/keeper"
1218 "github.com/stretchr/testify/require"
@@ -181,6 +187,36 @@ func TestAppImportExport(t *testing.T) {
181187 {app .skeys [authz .ModuleName ], newApp .skeys [authz .ModuleName ], [][]byte {
182188 authzkeeper .GranteeKey ,
183189 }},
190+ {
191+ app .GetKey (atypes .StoreKey ),
192+ newApp .GetKey (atypes .StoreKey ),
193+ [][]byte {},
194+ },
195+ {
196+ app .GetKey (ctypes .StoreKey ),
197+ newApp .GetKey (ctypes .StoreKey ),
198+ [][]byte {},
199+ },
200+ {
201+ app .GetKey (dtypes .StoreKey ),
202+ newApp .GetKey (dtypes .StoreKey ),
203+ [][]byte {},
204+ },
205+ {
206+ app .GetKey (mtypes .StoreKey ),
207+ newApp .GetKey (mtypes .StoreKey ),
208+ [][]byte {},
209+ },
210+ {
211+ app .GetKey (ptypes .StoreKey ),
212+ newApp .GetKey (ptypes .StoreKey ),
213+ [][]byte {},
214+ },
215+ {
216+ app .GetKey (taketypes .StoreKey ),
217+ newApp .GetKey (taketypes .StoreKey ),
218+ [][]byte {},
219+ },
184220 }
185221
186222 for _ , skp := range storeKeysPrefixes {
0 commit comments