docker-compose-files/hyperledger_fabric/v2.3.3/network_generator/node.py

16 lines
301 B
Python
Raw Normal View History

2021-09-10 12:54:54 +08:00
class Node(object):
"""
Node is a base class, representing a peer/orderer/ca in the network
"""
def __init__(self, org, name):
"""
:param org: which org it belongs to
:param name: name of the node
"""
self.org = org
self.name = name