Make QueryPlugins configurable for keeper

This commit is contained in:
Ethan Frey
2020-05-07 11:08:20 +02:00
parent 7caa786d71
commit 0ca2ff6702
9 changed files with 104 additions and 85 deletions

View File

@@ -34,7 +34,7 @@ func setupTest(t *testing.T) (testData, func()) {
tempDir, err := ioutil.TempDir("", "wasm")
require.NoError(t, err)
ctx, acctKeeper, keeper := CreateTestInput(t, false, tempDir, nil)
ctx, acctKeeper, keeper := CreateTestInput(t, false, tempDir, nil, nil)
data := testData{
module: NewAppModule(keeper),
ctx: ctx,