Return a modified msg that identifies this node by its index as a debugging aid.
(self, msg: str)
| 218 | return self.PRIV_KEYS[self.index] |
| 219 | |
| 220 | def _node_msg(self, msg: str) -> str: |
| 221 | """Return a modified msg that identifies this node by its index as a debugging aid.""" |
| 222 | return "[node %d] %s" % (self.index, msg) |
| 223 | |
| 224 | def _raise_assertion_error(self, msg: str): |
| 225 | """Raise an AssertionError with msg modified to identify this node.""" |
no outgoing calls
no test coverage detected