Skip to content

Commit 2236859

Browse files
committed
fix
1 parent 2d68a08 commit 2236859

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

nimbus_verified_proxy/lc_backend.nim

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ proc getEthLCBackend*(client: LCRestClientPool): EthLCBackend =
7676
except CancelledError as e:
7777
raise e
7878
except CatchableError as e:
79-
err(e.msg)
79+
return err()
8080

8181
ok(res)
8282

@@ -93,7 +93,7 @@ proc getEthLCBackend*(client: LCRestClientPool): EthLCBackend =
9393
except CancelledError as e:
9494
raise e
9595
except CatchableError as e:
96-
err(e.msg)
96+
return err()
9797

9898
ok(res)
9999

@@ -112,7 +112,7 @@ proc getEthLCBackend*(client: LCRestClientPool): EthLCBackend =
112112
except CancelledError as e:
113113
raise e
114114
except CatchableError as e:
115-
err(e.msg)
115+
return err()
116116

117117
ok(res)
118118

@@ -131,7 +131,7 @@ proc getEthLCBackend*(client: LCRestClientPool): EthLCBackend =
131131
except CancelledError as e:
132132
raise e
133133
except CatchableError as e:
134-
err(e.msg)
134+
return err()
135135

136136
ok(res)
137137

0 commit comments

Comments
 (0)