mirror of https://github.com/skygpu/skynet.git
Fix non-f-string
parent
9721451d5a
commit
eee19f1953
|
@ -88,6 +88,8 @@ def open_nodeos(cleanup: bool = True):
|
||||||
logging.info(f'GPU KEYS: {(priv, pub)}')
|
logging.info(f'GPU KEYS: {(priv, pub)}')
|
||||||
cleos.new_account('telos.gpu', ram=4200000, key=pub)
|
cleos.new_account('telos.gpu', ram=4200000, key=pub)
|
||||||
|
|
||||||
|
# lol, magic #s much XD ?
|
||||||
|
# TODO, why is there 4 workers/keys?
|
||||||
for i in range(1, 4):
|
for i in range(1, 4):
|
||||||
priv, pub = cleos.create_key_pair()
|
priv, pub = cleos.create_key_pair()
|
||||||
cleos.import_key(priv)
|
cleos.import_key(priv)
|
||||||
|
@ -116,7 +118,7 @@ def open_nodeos(cleanup: bool = True):
|
||||||
'telos.gpu',
|
'telos.gpu',
|
||||||
'config',
|
'config',
|
||||||
['eosio.token', '4,GPU'],
|
['eosio.token', '4,GPU'],
|
||||||
f'telos.gpu@active'
|
'telos.gpu@active'
|
||||||
)
|
)
|
||||||
assert ec == 0
|
assert ec == 0
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue