Merge PR #2310: staking transient store for Tendermint Updates

* working

* non-tests compile

* fix mounting error, working on testing

* stumped using transient store

* joon comments

* remove old comments

* resolve ibc error

* lint/sim_test

* fix determinism sim test

* sim enable commit

* docs and pending
This commit is contained in:
Rigel
2018-09-13 00:53:55 -04:00
committed by GitHub
parent 8682556fad
commit 5bf9401e87
29 changed files with 134 additions and 129 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ func getMockApp(t *testing.T) *mock.App {
mapp.SetInitChainer(getInitChainer(mapp, keeper, "ice-cold"))
require.NoError(t, mapp.CompleteSetup([]*sdk.KVStoreKey{keyCool}))
require.NoError(t, mapp.CompleteSetup(keyCool))
return mapp
}
+1 -1
View File
@@ -32,7 +32,7 @@ func getMockApp(t *testing.T) *mock.App {
mapp.SetInitChainer(getInitChainer(mapp, keeper))
require.NoError(t, mapp.CompleteSetup([]*sdk.KVStoreKey{keyPOW}))
require.NoError(t, mapp.CompleteSetup(keyPOW))
mapp.Seal()