diff --git a/PENDING.md b/PENDING.md index cba76aae6..9f0b86a99 100644 --- a/PENDING.md +++ b/PENDING.md @@ -7,7 +7,8 @@ BREAKING CHANGES * Gaia CLI (`gaiacli`) * Gaia - + * Make the transient store key use a distinct store key. [#2013](https://github.com/cosmos/cosmos-sdk/pull/2013) + * SDK * Tendermint diff --git a/cmd/gaia/app/app.go b/cmd/gaia/app/app.go index 9b318c8b1..a96efa6b1 100644 --- a/cmd/gaia/app/app.go +++ b/cmd/gaia/app/app.go @@ -78,7 +78,7 @@ func NewGaiaApp(logger log.Logger, db dbm.DB, traceStore io.Writer, baseAppOptio keyGov: sdk.NewKVStoreKey("gov"), keyFeeCollection: sdk.NewKVStoreKey("fee"), keyParams: sdk.NewKVStoreKey("params"), - tkeyParams: sdk.NewTransientStoreKey("params"), + tkeyParams: sdk.NewTransientStoreKey("transient_params"), } // define the accountMapper