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