From 003acc91bc0853f319c7141a218c2afacc351a7e Mon Sep 17 00:00:00 2001 From: Jian Xiao Date: Tue, 19 Mar 2024 23:55:28 +0000 Subject: [PATCH] fix --- core/tx.go | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/core/tx.go b/core/tx.go index 4c80d88587..6ca2ac1d84 100644 --- a/core/tx.go +++ b/core/tx.go @@ -101,11 +101,9 @@ type Transactor interface { // GetCurrentQuorumBitmapByOperatorId returns the current quorum bitmap for the operator. GetCurrentQuorumBitmapByOperatorId(ctx context.Context, operatorId OperatorID) (*big.Int, error) - // GetQuorumBitmapForOperatorsAtBlockNumber returns the quorum bitmaps for the operators - // at the given block number. - // The result slice will be of same length as "operatorIds", with the i-th entry be the - // result for the operatorIds[i]. If an operator failed to find bitmap, the corresponding - // result entry will be an empty bitmap. + // GetQuorumBitmapForOperatorsAtBlockNumber returns the quorum bitmaps for the operators at the given block number. + // The result slice will be of same length as "operatorIds", with the i-th entry be the result for the operatorIds[i]. + // If an operator failed to find bitmap, the corresponding result entry will be an empty bitmap. GetQuorumBitmapForOperatorsAtBlockNumber(ctx context.Context, operatorIds []OperatorID, blockNumber uint32) ([]*big.Int, error) // GetOperatorSetParams returns operator set params for the quorum.