diff --git a/Makefile b/Makefile index ce84c2265a..5086ddd454 100644 --- a/Makefile +++ b/Makefile @@ -175,8 +175,7 @@ protoImageName=ghcr.io/cosmos/proto-builder:$(protoVer) protoImage=$(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace --user $(shell id -u):$(shell id -g) $(protoImageName) proto-format: - @echo "--> Formatting Protobuf files" - @$(protoImage) find ./ -name "*.proto" -exec clang-format -i {} \; + @echo "--> Formatting Protobuf files" @$(protoImage) find ./ -name "*.proto" -exec clang-format -i {} \; .PHONY: proto-format typescript: proto-format diff --git a/x/crosschain/simulation/operations.go b/x/crosschain/simulation/operations.go index 0400b74231..f4590986bd 100644 --- a/x/crosschain/simulation/operations.go +++ b/x/crosschain/simulation/operations.go @@ -32,9 +32,9 @@ const ( DefaultWeightAddOutboundTracker = 10 DefaultWeightAddInboundTracker = 10 DefaultWeightRemoveOutboundTracker = 10 - DefaultWeightVoteGasPrice = 100 - DefaultWeightVoteOutbound = 100 - DefaultWeightVoteInbound = 100 + DefaultWeightVoteGasPrice = 50 + DefaultWeightVoteOutbound = 10 + DefaultWeightVoteInbound = 10 DefaultWeightWhitelistERC20 = 10 DefaultWeightMigrateTssFunds = 1 DefaultWeightUpdateTssAddress = 10 diff --git a/x/observer/simulation/operations.go b/x/observer/simulation/operations.go index 84bc312de9..1132e8a87e 100644 --- a/x/observer/simulation/operations.go +++ b/x/observer/simulation/operations.go @@ -42,7 +42,7 @@ const ( // DefaultWeightMsgTypeMsgEnableCCTX We use a high weight for this operation // to ensure that it is present in the block more number of times than any operation that changes the validator set // Arrived at this number based on the weights used in the cosmos sdk staking module and through some trial and error - DefaultWeightMsgTypeMsgEnableCCTX = 3650 + DefaultWeightMsgTypeMsgEnableCCTX = 100 DefaultWeightMsgTypeMsgDisableCCTX = 10 DefaultWeightMsgTypeMsgVoteTSS = 10 DefaultWeightMsgTypeMsgUpdateKeygen = 10