예제 #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)