-
However, there are also multiple RPC interfaces now, beyond just multiple "addresses" listed per node. If nodes have multiple RPC interfaces, is every |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
@lynshi from a quick look at the logic, all published_interfaces are matched (https://github.com/microsoft/CCF/blob/main/src/node/rpc/node_frontend.h#L925), and there should not be any duplication, since there is a single foreach pass. To be perfectly honest, I am not convinced of the value of this functionality, because:
What do you think? |
Beta Was this translation helpful? Give feedback.
@lynshi from a quick look at the logic, all published_interfaces are matched (https://github.com/microsoft/CCF/blob/main/src/node/rpc/node_frontend.h#L925), and there should not be any duplication, since there is a single foreach pass.
To be perfectly honest, I am not convinced of the value of this functionality, because:
What do you t…