示例#1
0
 def new():
     return newCLI(looper,
                   tdir,
                   subDirectory=subdir,
                   conf=tconf,
                   poolDir=tdirWithPoolTxns,
                   domainDir=tdirWithDomainTxns)
示例#2
0
def sponsorCli(looper, tdir):
    return newCLI(looper, tdir)
示例#3
0
def stewardCli(nodeRegsForCLI, looper, tdir):
    return newCLI(nodeRegsForCLI, looper, tdir)
示例#4
0
def cli(looper, tdir):
    return newCLI(looper, tdir)
示例#5
0
def nodesCli(looper, tdir, nodeNames):
    cli = newCLI(looper, tdir)
    cli.enterCmd("new node all")
    checkAllNodesStarted(cli, *nodeNames)
    return cli
示例#6
0
def newGuyCLI(looper, tdir, tconf):
    Setup(tdir).setupAll()
    return newCLI(looper, tdir, subDirectory='newguy', conf=tconf)