Skip to content

Commit 34b674d

Browse files
committed
fix
1 parent 5f7c969 commit 34b674d

File tree

1 file changed

+1
-1
lines changed
  • rollup/circuitcapacitychecker

1 file changed

+1
-1
lines changed

rollup/circuitcapacitychecker/impl.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,5 +167,5 @@ func (ccc *CircuitCapacityChecker) CheckTxNum(expected int) (bool, uint64, error
167167
return false, 0, fmt.Errorf("fail to get_tx_num in CircuitCapacityChecker, id: %d, err: %w", ccc.ID, result.Error)
168168
}
169169

170-
return result.TxNum == unit64(expected), result.TxNum, nil
170+
return result.TxNum == uint64(expected), result.TxNum, nil
171171
}

0 commit comments

Comments
 (0)