Skip to content

Commit

Permalink
Fix wrong Result error usage in eth_data_exporter (#3018)
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeme authored Jan 24, 2025
1 parent 9a5fd34 commit b917be5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fluffy/tools/eth_data_exporter.nim
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Fluffy
# Copyright (c) 2022-2024 Status Research & Development GmbH
# Copyright (c) 2022-2025 Status Research & Development GmbH
# Licensed and distributed under either of
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
Expand Down Expand Up @@ -579,7 +579,7 @@ when isMainModule:

let epochRecordRes = readEpochRecordCached(epochRecordFile)
if epochRecordRes.isErr():
error "Could not read epoch record file", error = res.error
error "Could not read epoch record file", error = epochRecordRes.error
quit 1

let epochRecord = epochRecordRes.get()
Expand Down

0 comments on commit b917be5

Please sign in to comment.