13 lines
233 B
Python
13 lines
233 B
Python
|
|
||
|
|
||
|
class Network(object):
|
||
|
"""
|
||
|
Network consists of several nodes:
|
||
|
* orderer nodes in a orderer org
|
||
|
* peer nodes in app orgs
|
||
|
* ca nodes
|
||
|
* client nodes
|
||
|
"""
|
||
|
|
||
|
def __init__(self):
|
||
|
pass
|