From b6071c04620dcb7f0bf64cebd1333f51c53819c7 Mon Sep 17 00:00:00 2001 From: Paul Cadman Date: Thu, 5 Dec 2024 11:01:19 +0000 Subject: [PATCH] anoma start should start the consensus engine The consensus engine is responsible for executing transactions in the mempool. --- include/anoma/start.exs | 1 + 1 file changed, 1 insertion(+) diff --git a/include/anoma/start.exs b/include/anoma/start.exs index fba6dfb6f3..2edadf2364 100644 --- a/include/anoma/start.exs +++ b/include/anoma/start.exs @@ -2,4 +2,5 @@ Logger.configure(level: :none) eclient = Anoma.Client.Examples.EClient.create_example_client IO.puts("#{eclient.client.grpc_port} #{eclient.node.node_id}") + Anoma.Node.Utility.Consensus.start_link(node_id: eclient.node.node_id, interval: 10000) )