Skip to content

Commit

Permalink
Merge pull request #2013 from cosmos/dev/fix_non_determinism_storekey
Browse files Browse the repository at this point in the history
Rename transient store key to be a unique key.
  • Loading branch information
jackzampolin authored Aug 14, 2018
2 parents c9cbb0b + 165fdf4 commit 1ae5466
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion PENDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cmd/gaia/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1ae5466

Please sign in to comment.