From 5e3f3db1655c06fced97e338e0a3211d8ef96065 Mon Sep 17 00:00:00 2001 From: Kim De Mey Date: Wed, 25 Sep 2024 22:35:19 +0200 Subject: [PATCH] Remove client-side json-rpc calls that were removed server-side (#2659) --- fluffy/rpc/rpc_calls/rpc_portal_debug_calls.nim | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/fluffy/rpc/rpc_calls/rpc_portal_debug_calls.nim b/fluffy/rpc/rpc_calls/rpc_portal_debug_calls.nim index 0f7f5052e..db93c3a27 100644 --- a/fluffy/rpc/rpc_calls/rpc_portal_debug_calls.nim +++ b/fluffy/rpc/rpc_calls/rpc_portal_debug_calls.nim @@ -15,25 +15,10 @@ Opt[string].useDefaultSerializationIn JrpcConv createRpcSigsFromNim(RpcClient): ## Portal History Network json-rpc debug & custom calls - proc portal_historyGossipHeaders( - era1File: string, epochAccumulatorFile: Opt[string] - ): bool - + proc portal_historyGossipHeaders(era1File: string, epochRecordFile: Opt[string]): bool proc portal_historyGossipHeaders(era1File: string): bool proc portal_historyGossipBlockContent(era1File: string): bool proc portal_history_storeContent(dataFile: string): bool proc portal_history_propagate(dataFile: string): bool proc portal_history_propagateHeaders(dataFile: string): bool proc portal_history_propagateBlock(dataFile: string, blockHash: string): bool - proc portal_history_propagateEpochRecord(dataFile: string): bool - proc portal_history_propagateEpochRecords(path: string): bool - proc portal_history_storeContentInNodeRange( - dbPath: string, max: uint32, starting: uint32 - ): bool - - proc portal_history_offerContentInNodeRange( - dbPath: string, nodeId: NodeId, max: uint32, starting: uint32 - ): int - - proc portal_history_depthContentPropagate(dbPath: string, max: uint32): bool - proc portal_history_breadthContentPropagate(dbPath: string): bool