[00:00:23] do you think putting the sleep time made it better? should we increase it a bit more? or do you think its unrelated? [00:00:58] Hm. So scripting problem again? How do we get around it? [00:03:43] on one of the nodes the nodes didnt have enough time to break a fork [00:08:41] both nodes staked a block at the same time, and immediately the script failed [00:10:19] between staking is set to false and assert_state is called it is checked that both nodes best hash is the best [00:10:52] so the only reason i can think is that the block hashes are checked too early, and then it goes too fast in assert_state [00:11:18] i would put another sleep 2 at the beginning of wait_until_sync [00:11:22] does that make sense? [00:11:34] function wait_until_sync { sleep 2 besthash_one=$(nav_cli_one getbestblockhash) besthash_two=$(nav_cli_two getbestblockhash) if [ "$besthash_one" != "$besthash_two" ]; then sleep 1 dice=$(bc <<< "$RANDOM % 5") if [ $dice -eq 1 ]; then node=$(bc <<< "$RANDOM % 2") if [ $node -eq 0 ]; then $(nav_cli_one "generate 1") [00:11:35] else $(nav_cli_two "generate 1") fi sleep 2 fi wait_until_sync fi } [00:13:17] my nodes script loop havent failed yet [00:17:14] its happenning the same on both nodes [00:34:07] Hm. So scripting problem again? How do we get around it? [00:34:30] i would try adding that extra sleep in wait_until_sync [00:35:21] Hmmmm. Okay I'll do that and start the nodes again. [00:35:49] On the bright side, after stressing, all the verify chain passed [00:36:25] lets see how this onegoes [02:25:25] @aguycalled hwo aobut adding 10 sec sleep at wait_until_sync and assert? [02:36:48] running 5 nodes with sleep 5 at the beginning of functions wait_until_sync and assert [02:37:16] oh lol [02:37:24] previous conversation just popped up [02:37:51] i'll add the sleep you mentioned above [02:41:39] cool, running. we had the same idea anyway. hopefully will wake up to some good news [02:49:07] 👍 [16:28:22] All runs still going. No fails so far. :) [16:29:24] 👍 [16:35:34] im quite close to have ledger working