Fix non-f-string

fomo_polish
Tyler Goodlet 2025-02-03 10:49:03 -05:00
parent 9721451d5a
commit eee19f1953
1 changed files with 3 additions and 1 deletions

4
skynet/nodeos.py 100644 → 100755
View File

@ -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