diff --git a/load-testing/tests/relays_stress_helpers_test.go b/load-testing/tests/relays_stress_helpers_test.go index d8bf7b2d8..9718478c9 100644 --- a/load-testing/tests/relays_stress_helpers_test.go +++ b/load-testing/tests/relays_stress_helpers_test.go @@ -730,7 +730,6 @@ func (plan *actorLoadTestIncrementPlan) shouldIncrementActorCount( } initialSessionNumber := testsession.GetSessionNumberWithDefaultParams(startBlockHeight) - // TODO_BLOCKER(@bryanchriswhite): replace with gov param query when available. actorSessionIncRate := plan.blocksPerIncrement / int64(sharedParams.GetNumBlocksPerSession()) nextSessionNumber := sessionInfo.sessionNumber + 1 - initialSessionNumber isSessionStartHeight := sessionInfo.blockHeight == sessionInfo.sessionStartBlockHeight @@ -757,7 +756,6 @@ func (plan *actorLoadTestIncrementPlan) shouldIncrementSupplierCount( } initialSessionNumber := testsession.GetSessionNumberWithDefaultParams(startBlockHeight) - // TODO_BLOCKER(@bryanchriswhite): replace with gov param query when available. supplierSessionIncRate := plan.blocksPerIncrement / int64(sharedParams.GetNumBlocksPerSession()) nextSessionNumber := sessionInfo.sessionNumber + 1 - initialSessionNumber isSessionEndHeight := sessionInfo.blockHeight == sessionInfo.sessionEndBlockHeight diff --git a/pkg/relayer/session/session.go b/pkg/relayer/session/session.go index 7055005f5..ce941b0b5 100644 --- a/pkg/relayer/session/session.go +++ b/pkg/relayer/session/session.go @@ -237,8 +237,6 @@ func (rs *relayerSessionsManager) forEachBlockClaimSessionsFn( // no longer eligible to be claimed, but that's not always the case. // Once claim window closing is implemented, they will be filtered out // downstream at the waitForEarliestCreateClaimsHeight step. - // TODO_BLOCKER(@bryanchriswhite): Introduce governance claim and - // proof window durations, implement off-chain window closing and on-chain window checks. if sessionGracePeriodEndHeight <= block.Height() { // Iterate over the sessionsTrees that have grace period ending at this // block height and add them to the list of sessionTrees to be published. diff --git a/x/proof/keeper/msg_server_create_claim.go b/x/proof/keeper/msg_server_create_claim.go index c93177174..ef5b54b29 100644 --- a/x/proof/keeper/msg_server_create_claim.go +++ b/x/proof/keeper/msg_server_create_claim.go @@ -15,9 +15,6 @@ func (k msgServer) CreateClaim( ctx context.Context, msg *types.MsgCreateClaim, ) (_ *types.MsgCreateClaimResponse, err error) { - // TODO_BLOCKER(@bryanchriswhite): Prevent Claim upserts after the ClaimWindow is closed. - // TODO_BLOCKER(@bryanchriswhite): Validate the signature on the Claim message corresponds to the supplier before Upserting. - // Declare claim to reference in telemetry. var claim types.Claim diff --git a/x/proof/keeper/msg_server_submit_proof.go b/x/proof/keeper/msg_server_submit_proof.go index c13abf4fb..5beff318a 100644 --- a/x/proof/keeper/msg_server_submit_proof.go +++ b/x/proof/keeper/msg_server_submit_proof.go @@ -43,9 +43,6 @@ func init() { // A proof that's stored on-chain is what leads to rewards (i.e. inflation) // downstream, making the series of checks a critical part of the protocol. // -// TODO_BLOCKER(@bryanchriswhite): Prevent proof upserts after the tokenomics -// module has processed the respective session. -// // Note: The entity sending the SubmitProof messages does not necessarily need // to correspond to the supplier signing the proof. For example, a single entity // could (theoretically) batch multiple proofs (signed by the corresponding supplier)