From da20ec9bf4fb2277da4ce3fd21eca07cc49e1008 Mon Sep 17 00:00:00 2001 From: Cal Bera Date: Wed, 28 Jun 2023 20:22:19 -0400 Subject: [PATCH] Update cosmos/x/evm/store/snapmulti/store.go Co-authored-by: Devon Bear Signed-off-by: Cal Bera --- cosmos/x/evm/store/snapmulti/store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cosmos/x/evm/store/snapmulti/store.go b/cosmos/x/evm/store/snapmulti/store.go index 8e0e4db31..f7383e861 100644 --- a/cosmos/x/evm/store/snapmulti/store.go +++ b/cosmos/x/evm/store/snapmulti/store.go @@ -39,7 +39,7 @@ const ( // corresponding cache kv store currently being used. type mapMultiStore map[storetypes.StoreKey]storetypes.CacheKVStore -// Store is a wrapper around the Cosmos SDK `MultiStore` which supports snapshots and reverts. +// store is a wrapper around the Cosmos SDK `MultiStore` which supports snapshots and reverts. // It journals revisions by cache-wrapping the cachekv stores on a call to `Snapshot`. In this // store's lifecycle, any operations done before the first call to snapshot will be enforced on the // root `mapMultiStore`.