From 78da69cc4ab551e003c33543331801383217b10e Mon Sep 17 00:00:00 2001 From: Tristan Wilson Date: Tue, 23 Jul 2024 11:10:51 +0200 Subject: [PATCH] Move validateMessageNumber method to arbdebug ns This is a debugging related call, changed namespace to make it clear. --- arbnode/node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arbnode/node.go b/arbnode/node.go index a2ccdd1834..ac18a6c7d4 100644 --- a/arbnode/node.go +++ b/arbnode/node.go @@ -779,7 +779,7 @@ func CreateNode( } if currentNode.StatelessBlockValidator != nil { apis = append(apis, rpc.API{ - Namespace: "arbvalidator", + Namespace: "arbdebug", Version: "1.0", Service: &BlockValidatorDebugAPI{ val: currentNode.StatelessBlockValidator,