0
これは初めてPythonスクリプトを実行しようとしています。エラー:Pythonスクリプトを実行すると引数が少なすぎます
プロンプトコマンドからgenesis.json
でpgeth.py
を開始しようとしています。
このエラーはtoo few arguments
です。
これらのプロンプトCMDライン私の窓の上のコマンドです:私の知る限り、source code of pgeth.pyを読み込むことで、引数が呼び出され
def init(args):
"""init command"""
# account management
initAccount()
# init needed if there is no chaindata dir
datadir = getDataDir()
if checkDir(os.path.join(datadir, 'chaindata')):
return
geth = checkGethCommand()
options = [ "--datadir", datadir, "--networkid", "100" ]
# create the json genesis
address = getAddress()
txt = GENESIS.replace("$ADDRESS$", address)
f = open("genesis.json", "w")
f.write(txt)
f.close()
# launch the blockchain with the CustomGenesis.json file
cmdInit = [ geth ] + options + [ "init", "genesis.json"]
logging.debug("cmd: " + strCommand(cmdInit))
subprocess.call(cmdInit)
あなたの 'pgeth.py'スクリプトの内容を表示できますか? – errata
ご覧ください、私は質問を編集しました。 – user5953665