docker-compose-files/hyperledger_fabric/v1.2.0/network_generator/node.py

16 lines
301 B
Python
Raw Normal View History

2018-07-04 17:16:42 +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