1. 03 Dec, 2024 6 commits
  2. 02 Dec, 2024 11 commits
  3. 30 Nov, 2024 1 commit
  4. 29 Nov, 2024 2 commits
  5. 28 Nov, 2024 11 commits
  6. 27 Nov, 2024 6 commits
  7. 26 Nov, 2024 3 commits
    • Matthew Slipper's avatar
      op-node: Fix panic after closing P2P (#13106) · 51a036d2
      Matthew Slipper authored
      When the op-node is closed, it also closes the P2P node. To prevent future usage, `n.p2pNode` is set to `nil`. However, the AsyncGossiper can still sometimes send gossip messages to the `OpNode` struct after close. Since `n.p2pNode` is `nil` at this point, the node would panic. This PR updates the `OpNode` implementation to check for this case. Access is protected via a mutex to prevent concurrency problems.
      51a036d2
    • smartcontracts's avatar
      fix: restore asterisc bytecode, vendor (#13104) · 9200bff0
      smartcontracts authored
      Restores the correct asterisc RISCV bytecode, moves the contract
      to the vendor folder, and changes CI so that it performs the check
      on the asterisc bytecode when attempting to merge into develop.
      9200bff0
    • Matthew Slipper's avatar
      ci: Tweak test timeouts (#13097) · 4f8e9b51
      Matthew Slipper authored
      4f8e9b51