Commit 21f83c6f authored by ValarDragon's avatar ValarDragon
Browse files

Try removing events from epoch

parent 6ebe3b48
Showing with 16 additions and 3 deletions
+16 -3
......@@ -34,6 +34,18 @@ Ref: https://keepachangelog.com/en/1.0.0/
# Changelog
## [v3.3.0]
* This branch removes the epoch time events, which should drastically help with epoch time performance.
## [v3.3.0-wip]
* This branch uses Tendermint v0.34.13, should be renamed to v3.3.0
## [v3.2.0]
* Introduce several epoch speed improvements over v3.1.0
## [v1.0.1](https://github.com/osmosis/osmosis-labs/releases/tag/v1.0.1) - 2021-06-17
This release fixes a bug in `osmosisd version` always displaying 0.0.1.
......
......@@ -31,6 +31,6 @@ replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.2-alp
replace github.com/tendermint/tendermint => github.com/tendermint/tendermint v0.34.12
replace github.com/cosmos/cosmos-sdk => github.com/osmosis-labs/cosmos-sdk v0.42.10-0.20210911044605-92805585b7ea
replace github.com/cosmos/cosmos-sdk => github.com/osmosis-labs/cosmos-sdk v0.42.10-0.20210920214856-e540b0779f88
replace github.com/tendermint/tm-db => github.com/osmosis-labs/tm-db v0.6.5-0.20210911033928-ba9154613417
......@@ -13,6 +13,7 @@ type BankKeeper interface {
GetAllBalances(ctx sdk.Context, addr sdk.AccAddress) sdk.Coins
SendCoinsFromModuleToAccount(ctx sdk.Context, senderModule string, recipientAddr sdk.AccAddress, amt sdk.Coins) error
SendCoinsFromModuleToAccountNoEvents(ctx sdk.Context, senderModule string, recipientAddr sdk.AccAddress, amt sdk.Coins) error
SendCoinsFromAccountToModule(ctx sdk.Context, senderAddr sdk.AccAddress, recipientModule string, amt sdk.Coins) error
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment