From 3bfdf53568dfca1c7acef1635fe6e2d9634c33b1 Mon Sep 17 00:00:00 2001 From: Timothy Banks Date: Fri, 4 Dec 2020 11:05:39 -0500 Subject: [PATCH] nodeos needs more time on linux before it starts accepting p2p transactions --- tutorials/bios-boot-tutorial/bios-boot-tutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/bios-boot-tutorial/bios-boot-tutorial.py b/tutorials/bios-boot-tutorial/bios-boot-tutorial.py index 7534c1ad0f0..1daf37c4ba4 100755 --- a/tutorials/bios-boot-tutorial/bios-boot-tutorial.py +++ b/tutorials/bios-boot-tutorial/bios-boot-tutorial.py @@ -289,7 +289,7 @@ def stepStartWallet(): importKeys() def stepStartBoot(): startNode(0, {'name': 'eosio', 'pvt': args.private_key, 'pub': args.public_key}) - sleep(1.5) + sleep(10.0) def stepInstallSystemContracts(): run(args.cleos + 'set contract eosio.token ' + args.contracts_dir + '/eosio.token/') run(args.cleos + 'set contract eosio.msig ' + args.contracts_dir + '/eosio.msig/')