Closed dimalinux closed 1 year ago
Patch coverage: 90.16
% and project coverage change: +0.36
:tada:
Comparison is base (
3859162
) 57.57% compared to head (7490c90
) 57.94%.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
daemon_version
RPC requests on the bootnode where causing it to crash. It was accessing theprotocolBackend
interface, which is nil for bootnodes to get the chain-ID as well as the contract address. We also had Prometheus metrics that were added that were accessingprotocolBackend
.Implemented solutions:
daemon_version
. We verify that the chain-ID matches the environment on start, so this should always be accurate.swapd
instances report the contract address in the version because they can change it. Bootnodes never access the contract, so it makes sense for them to just omit the value.contract-addresses.json
closing an extra ticket from the backlog.Closes #465 Closes #202