Skip to content

Commit cbdccb7

Browse files
committed
remove unused func
1 parent 0431544 commit cbdccb7

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

main.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,6 @@ def _update_run_number(self, value: int) -> None:
6363
logger.info(f"Run number updated to {value}")
6464
self.current_run_number = value
6565

66-
def _update_start_time_ms(self, value: int) -> None:
67-
# Cache this as we want the run start message construction and production to be as fast as
68-
# possible so we don't miss events
69-
logger.info(f"Run start time updated to {value} so changing it to ms ({value * 1000})")
70-
self.current_start_time_ms = int(value) * 1000
71-
7266
def _update_blocks(self, value: ca_bytes) -> None:
7367
logger.debug(f"blocks_hexed: {value}")
7468
blocks_unhexed = dehex_decompress_and_dejson(bytes(value))

0 commit comments

Comments
 (0)