Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jianoaix committed Mar 19, 2024
1 parent 9f68057 commit 003acc9
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions core/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 003acc9

Please sign in to comment.