diff --git a/lib/archethic/beacon_chain/subset/summary_cache.ex b/lib/archethic/beacon_chain/subset/summary_cache.ex index b2b97e3b2..96388463d 100644 --- a/lib/archethic/beacon_chain/subset/summary_cache.ex +++ b/lib/archethic/beacon_chain/subset/summary_cache.ex @@ -66,7 +66,7 @@ defmodule Archethic.BeaconChain.Subset.SummaryCache do @spec add_slot(Slot.t(), Crypto.key()) :: :ok def add_slot(slot = %Slot{subset: subset}, node_public_key) do via_tuple = {:via, PartitionSupervisor, {SummaryCacheSupervisor, subset}} - GenServer.call(via_tuple, {:add_slot, slot, node_public_key}) + GenServer.call(via_tuple, {:add_slot, slot, node_public_key}, :infinity) end def handle_call({:add_slot, slot, node_public_key}, _from, state) do