-
Mithril seems to be set up correctly(?), but throws "no pending certificate" error. Node is synced and running on preview network. ● mithril-signer.service - Mithril Signer service Sep 11 10:37:58 vducdn53 mithril-signer[223992]: {"msg":"Retrieve pending certificate","v":0,"name":"slog-rs","level":20,"time":"2022-09-11T10:37:58.748765277Z","hostname":"vducdn53","pid":223992} |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @adavault, this is actually the expected behavior:
As soon as you see that your |
Beta Was this translation helpful? Give feedback.
Hi @adavault, this is actually the expected behavior:
Pending Certificate
is created each time a newImmutable File
is appended to the database folder of the Cardano node (which happens every~2
hours on thepreview
network)Pending Certificate
is available until a newCertificate
is created (which happens when theMithril Aggregator
has received enoughIndividual Signatures
from theMithril Signers
)As soon as you see that your
Signer
node is in theRegistered
state (Registered(RegisteredState { beacon: Beacon { network: "preview", epoch: Epoch(33), immutable_file_number: 656 } })
in your logs), it means that your node will be able to contribute to the creation of the multi-signa…