Skip to content
  1. Mar 09, 2023
    • Serban Iorga's avatar
      Some error improvements (#1956) · 621f726a
      Serban Iorga authored
      * Use `HeaderChainError` in parachains module
      
      * Use MessageProofError instead of 'static str in some places
      
      * Avoid implementing Into<'static str> for some errors
      
      We avoid deriving `Debug` for the structs that we use in the runtime and
      we derive `RuntimeDebug` instead in order to avoid bloating th eruntime
      with static strs. But implementing `Into<'static str>` does the same. So
      in some places it makes sense to replace `Into<'static str>` with `Debug`.
      
      * Move the messages error definition
      
      Move the messages error definition outside of `mod target`
      621f726a
  2. Mar 08, 2023
  3. Mar 07, 2023
  4. Mar 06, 2023
  5. Mar 03, 2023
  6. Mar 02, 2023
  7. Mar 01, 2023
  8. Feb 28, 2023
  9. Feb 27, 2023
  10. Feb 24, 2023
  11. Feb 23, 2023
  12. Feb 22, 2023
  13. Feb 21, 2023
    • Branislav Kontur's avatar
      Rewards refund for relaying BridgeHubRococo/BridgeHubWococo (#1894) · 16e91c78
      Branislav Kontur authored
      * Rewards refund for relaying BridgeHubRococo/BridgeHubWococo
      
      * spellcheck + clippy
      
      * RefundBridgedParachainMessages move to bp-runtime
      
      * Dedicated RewardingBridgeSignedExtra for Rococo/Wococo shared runtime with two instances of `RefundBridgedParachainMessages`
      
      * RefundBridgedParachainMessages with Tuple support for multiple
      
      * Fix additional_signed
      
      * revert fix
      
      * Refactor to `RefundBridgedParachainMessagesSchema`
      
      * removed unused deps
      16e91c78
  14. Feb 20, 2023
  15. Feb 16, 2023
  16. Feb 15, 2023
    • Svyatoslav Nikolsky's avatar
      Reject storage proofs with unused nodes: begin (#1878) · 5279fc99
      Svyatoslav Nikolsky authored
      * reject storage proofs with unused nodes: begin
      
      * fix ignores_parachain_head_if_it_is_missing_from_storage_proof
      
      * message_proof_is_rejected_if_it_has_duplicate_trie_nodes && message_proof_is_rejected_if_it_has_unused_trie_nodes
      
      * proof_with_duplicate_items_is_rejected and proof_with_unused_items_is_rejected
      
      * clippy
      
      * fix benchmarks compilation
      
      * impl From<Error> for &'static str
      
      * fix review comments
      
      * added comment
      5279fc99