Skip to content

Commit 9a0bbce

Browse files
committed
fix: remove unnecessary cast
1 parent 3971706 commit 9a0bbce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BuilderSystemTransactions.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ contract BuilderSystemTransactions is Owned(msg.sender) {
4848
/// @notice Gets the current flashblock index
4949
/// @return flashblockIndex The current flashblock index
5050
function getFlashblockIndex() external view returns (uint8) {
51-
return uint8(lastFlashblockIndex);
51+
return lastFlashblockIndex;
5252
}
5353

5454
/// @notice Adds a builder to the list of builders

0 commit comments

Comments
 (0)