Skip to content

Commit bef4c05

Browse files
authored
Add custom json-rpc method to initialize the trusted block root (#2805)
1 parent 8d8f62b commit bef4c05

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

fluffy/fluffy.nim

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import
2828
./rpc/[
2929
rpc_eth_api, rpc_debug_api, rpc_discovery_api, rpc_portal_common_api,
3030
rpc_portal_history_api, rpc_portal_beacon_api, rpc_portal_state_api,
31-
rpc_portal_debug_history_api,
31+
rpc_portal_nimbus_beacon_api, rpc_portal_debug_history_api,
3232
],
3333
./database/content_db,
3434
./portal_node,
@@ -273,6 +273,7 @@ proc run(
273273
rpcServer.installPortalBeaconApiHandlers(
274274
node.beaconNetwork.value.portalProtocol
275275
)
276+
rpcServer.installPortalNimbusBeaconApiHandlers(node.beaconNetwork.value)
276277
if node.stateNetwork.isSome():
277278
rpcServer.installPortalCommonApiHandlers(
278279
node.stateNetwork.value.portalProtocol, PortalSubnetwork.state

fluffy/network/beacon/beacon_network.nim

+1-1
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ proc validateContent(
357357

358358
debug "Received offered content validated successfully", contentKey
359359
else:
360-
error "Received offered content failed validation",
360+
debug "Received offered content failed validation",
361361
contentKey, error = validation.error
362362
return false
363363

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# nimbus
2+
# Copyright (c) 2024 Status Research & Development GmbH
3+
# Licensed and distributed under either of
4+
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
5+
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
6+
# at your option. This file may not be copied, modified, or distributed except according to those terms.
7+
8+
{.push raises: [].}
9+
10+
import json_rpc/rpcserver, ../network/beacon/beacon_network
11+
12+
export rpcserver
13+
14+
# Nimbus/fluffy specific RPC methods for the Portal beacon network.
15+
proc installPortalNimbusBeaconApiHandlers*(rpcServer: RpcServer, n: BeaconNetwork) =
16+
rpcServer.rpc("portal_nimbus_beaconSetTrustedBlockRoot") do(blockRoot: string) -> bool:
17+
let root = Digest.fromHex(blockRoot)
18+
n.trustedBlockRoot = Opt.some(root)
19+
true

0 commit comments

Comments
 (0)