mirror of
				https://github.com/0glabs/0g-chain.git
				synced 2025-11-04 00:07:51 +00:00 
			
		
		
		
	fix: da signers begin block
This commit is contained in:
		
							parent
							
								
									cb81641f7d
								
							
						
					
					
						commit
						4ef0aa0d44
					
				@ -73,7 +73,7 @@ func (k Keeper) BeginBlock(ctx sdk.Context, _ abci.RequestBeginBlock) {
 | 
			
		||||
		Quorums: make([]*types.Quorum, 0),
 | 
			
		||||
	}
 | 
			
		||||
	if len(ballots) >= int(params.EncodedSlices) {
 | 
			
		||||
		for i := 0; i+int(params.EncodedSlices) < len(ballots); i += 1 {
 | 
			
		||||
		for i := 0; i+int(params.EncodedSlices) <= len(ballots); i += int(params.EncodedSlices) {
 | 
			
		||||
			if int(params.MaxQuorums) < len(quorums.Quorums) {
 | 
			
		||||
				break
 | 
			
		||||
			}
 | 
			
		||||
@ -85,7 +85,7 @@ func (k Keeper) BeginBlock(ctx sdk.Context, _ abci.RequestBeginBlock) {
 | 
			
		||||
			}
 | 
			
		||||
			quorums.Quorums = append(quorums.Quorums, &quorum)
 | 
			
		||||
		}
 | 
			
		||||
		if len(ballots)%int(params.EncodedSlices) != 0 && int(params.MaxQuorums) < len(quorums.Quorums) {
 | 
			
		||||
		if len(ballots)%int(params.EncodedSlices) != 0 && int(params.MaxQuorums) > len(quorums.Quorums) {
 | 
			
		||||
			quorum := types.Quorum{
 | 
			
		||||
				Signers: make([]string, 0),
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user