1. 15 Apr, 2024 2 commits
  2. 12 Apr, 2024 1 commit
    • pk910's avatar
      fix: fix failing persistence test (#554) · 99242d66
      pk910 authored
      fixed the failing persistence test by re-ordering the clients list.
      
      The test fails because initialization of all EL clients takes longer
      than the initial genesis delay.
      Due to this, lighhouse returns an unhealty result for its health check
      as it's post-genesis and not following a chain / has no peers.
      The kurtosis package waits for a healthy result, which never occurs as
      all other BNs & VCs are missing at that point.
      
      The fix proposed in this PR is a workaround as it moves the lighthouse
      node further down to ensure it can connect to other nodes initialized
      before.
      
      There is an alternative approach to fix this issue:
      ```
      network_params:
        genesis_delay: 300
      ```
      which ensures all clients are properly initialized before the network
      starts.
      99242d66
  3. 10 Apr, 2024 1 commit
  4. 08 Apr, 2024 3 commits
  5. 05 Apr, 2024 3 commits
  6. 04 Apr, 2024 2 commits
  7. 03 Apr, 2024 1 commit
  8. 02 Apr, 2024 7 commits
  9. 28 Mar, 2024 5 commits
  10. 27 Mar, 2024 1 commit
  11. 22 Mar, 2024 1 commit
    • pk910's avatar
      fix: use correct dora & assertoor images (#522) · 2a8d73ab
      pk910 authored
      Verkle support has been dropped from the package.
      Dora & Assertoor were using custom images to support verkle, these
      images are now accidentally used, as electra_fork_epoch is set to 500
      now by default.
      2a8d73ab
  12. 21 Mar, 2024 3 commits
  13. 19 Mar, 2024 3 commits
  14. 18 Mar, 2024 1 commit
  15. 15 Mar, 2024 2 commits
  16. 08 Mar, 2024 2 commits
  17. 06 Mar, 2024 1 commit
    • pk910's avatar
      fix: fix end index in validator ranges file (#509) · da55be84
      pk910 authored
      The ranges.yaml currently looks like this:
      ```
      0-250: cl-1-lighthouse-geth
      250-500: cl-2-prysm-reth
      500-750: cl-3-lodestar-besu
      ```
      
      but the end index should be inclusive:
      ```
      0-249: cl-1-lighthouse-geth
      250-499: cl-2-prysm-reth
      500-749: cl-3-lodestar-besu
      ```
      da55be84
  18. 05 Mar, 2024 1 commit