- Apr 26, 2023
-
-
Svyatoslav Nikolsky authored
* fixed off-by-one when confirming rewards in messages pallet * Update modules/messages/src/inbound_lane.rs
-
- Apr 25, 2023
-
-
Svyatoslav Nikolsky authored
* slash relayer balance for invalid transactions * require some gap before unstake is possible * more clippy * log priority boost * add issue ref to TODO * fix typo * is_message_delivery_call -> is_receive_messages_proof_call * moved is_receive_messages_proof_call above * only slash relayers for priority transactions * Update primitives/relayers/src/registration.rs Co-authored-by: Adrian Catangiu <[email protected]> * Update primitives/relayers/src/registration.rs Co-authored-by: Adrian Catangiu <[email protected]> * Update bin/runtime-common/src/refund_relayer_extension.rs Co-authored-by: Adrian Catangiu <[email protected]> * Update bin/runtime-common/src/refund_relayer_extension.rs Co-authored-by: Adrian Catangiu <[email protected]> * Update bin/runtime-common/src/refund_relayer_extension.rs Co-authored-by: Adrian Catangiu <[email protected]> * Update modules/relayers/src/lib.rs Co-authored-by: Adrian Catangiu <[email protected]> * Update primitives/relayers/src/registration.rs Co-authored-by: Adrian Catangiu <[email protected]> * benificiary -> beneficiary --------- Co-authored-by: Adrian Catangiu <[email protected]>
-
- Apr 17, 2023
-
-
Serban Iorga authored
-
Svyatoslav Nikolsky authored
* Revert "Reintroduce msg dispatch status reporting (#2027)" This reverts commit 68ba699b. * post-revert fix
-
- Apr 13, 2023
-
-
Svyatoslav Nikolsky authored
-
Serban Iorga authored
* Define RangeInclusiveExt * Use RangeInclusiveExt * Add docs
-
- Apr 12, 2023
-
-
Svyatoslav Nikolsky authored
-
- Apr 10, 2023
-
-
Svyatoslav Nikolsky authored
* reject delivery transactions with at least one obsolete message * clippy * allow empty delivery transactions with rewards confirmations BUT only when there's no room left in the unrewarded relayers vector * clippy * allow empty delivery transactions if no message slots in unrewarded relayers vector
-
Serban Iorga authored
* Use an actual Result inside MessageDispatchResult We need this in order to distinguish between Ok and Err * Revert #1660 * Fixes + simplifications * Implement review suggestions
-
- Apr 07, 2023
-
-
Svyatoslav Nikolsky authored
fail with InsufficientDispatchWeight if dispatch_weight doesn't cover weight of all bundled messages (#2018)
-
- Apr 03, 2023
-
-
dependabot[bot] authored
Bumps [scale-info](https://github.com/paritytech/scale-info) from 2.4.0 to 2.5.0. - [Release notes](https://github.com/paritytech/scale-info/releases) - [Changelog](https://github.com/paritytech/scale-info/blob/master/CHANGELOG.md) - [Commits](https://github.com/paritytech/scale-info/compare/v2.4.0...v2.5.0) --- updated-dependencies: - dependency-name: scale-info dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
-
- Mar 28, 2023
-
-
Svyatoslav Nikolsky authored
* MaxRequests -> MaxFreeMandatoryHeadersPerBlock in pallet-bridge-grandpa * fix comment * fix comment * fix comment
-
- Mar 27, 2023
-
-
Svyatoslav Nikolsky authored
* run benchmarks for pallet-bridge-grandpa mock runtime * run benchmarks for pallet-bridge-relayers mock runtime * run benchmarks for pallet-bridge-parachains mock runtime * run benchmarks for pallet-bridge-messages mock runtime * test benchmarks on mockj runtimes from CI * clippy and spelling
-
Svyatoslav Nikolsky authored
* run rustfix rustdoc in grandpa pallet benchmarks * enable rustdoc for all features * fix rialto parachain runtime compilation
-
- Mar 24, 2023
-
-
Adrian Catangiu authored
* bump refs and fix build * more fixes * Fix rialto-parachain node * Update dependencies for tools/runtime-codegen * Regenerate rialto-parachain indirect runtime * Fix register_parachain * Fix clippy * Undo clippy allow --------- Co-authored-by: Serban Iorga <[email protected]>
-
Svyatoslav Nikolsky authored
* added receive_single_message_proof_with_dispatch benchmark * clippy
-
- Mar 22, 2023
-
-
Svyatoslav Nikolsky authored
-
- Mar 20, 2023
-
-
dependabot[bot] authored
Bumps [finality-grandpa](https://github.com/paritytech/finality-grandpa) from 0.16.1 to 0.16.2. - [Release notes](https://github.com/paritytech/finality-grandpa/releases) - [Commits](https://github.com/paritytech/finality-grandpa/compare/v0.16.1...v0.16.2) --- updated-dependencies: - dependency-name: finality-grandpa dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
-
- Mar 16, 2023
-
-
Svyatoslav Nikolsky authored
-
- Mar 14, 2023
-
-
Branislav Kontur authored
Removed deprecated `#[pallet::generate_store(pub(super) trait Store)]` according to latest Cumulus (#1964)
-
Branislav Kontur authored
* Bump substrate/polkadot/cumulus * sp_finality_grandpa - >sp_consensus_grandpa * sp_beefy -> sp_consensus_beefy * pallet_randomness_collective_flip -> pallet_insecure_randomness_collective_flip * fix * Cumulus parachain stuff * Cumulus parachain stuff one more * Millau/Rialto runtimes * Removed pallet_insecure_randomness_collective_flip * Millau node * Removed session historial * TMP: just try disable all fetches * Docs in gitlab.yml
-
- Mar 09, 2023
-
-
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`
-
- Mar 02, 2023
-
-
Svyatoslav Nikolsky authored
-
- Mar 01, 2023
-
-
Svyatoslav Nikolsky authored
* fixed benchmarks broken by rejecting storage proofs with excessive trie nodes and justifications with extra prevotes * update weights * fmt * accidental paste * revert changes to millau runtime (separate PR) * revert comment change
-
- Feb 28, 2023
-
-
Serban Iorga authored
* Refund messages confirmation tx * Fixes
-
Serban Iorga authored
* Add Chain::ID const * Relayers pallet: extend payment source id * Addressed code review comments * Fix benchmarks * Fix dashboards * Renamings * Fix compilation
-
- Feb 23, 2023
-
-
Serban Iorga authored
-
- Feb 22, 2023
-
-
Svyatoslav Nikolsky authored
get rid of ChainWithMessages::WeightInfo, because we can't have exact weights for "external chains" (#1899)
-
Svyatoslav Nikolsky authored
* weight+size limits for bridge GRANDPA pallet calls * continue * fixed all tests * some changes to refund computations * post_dispatch_refunds_relayer_in_all_finality_batch_with_extra_weight * - dup code * do not return Pays::No if call is above weight/size limits * relayer_pays_tx_fee_when_submitting_huge_mandatory_header and relayer_pays_tx_fee_when_submitting_justification_with_long_ancestry_votes * clippy * fmt * clippy * small change in docs * fixed GRANDPA-limits constants for Polkadot-like chains * clippy * clippy + spelling * Update primitives/polkadot-core/src/lib.rs Co-authored-by: Adrian Catangiu <[email protected]> * Update bin/runtime-common/src/refund_relayer_extension.rs Co-authored-by: Adrian Catangiu <[email protected]> * reverted unnecessary change * GrandpaJustification::max_reasonable_size --------- Co-authored-by: Adrian Catangiu <[email protected]>
-
- Feb 20, 2023
-
-
Serban Iorga authored
* RefundRelayerForMessagesFromParachain changes - some renamings and cosmetics - removing the GI generic param since we can get it from the parachains config - merging (Parachains Instance, Parachain Id) and (Messages Instance, Messages lane Id) generic params - removing unnecessay derives - renaming for the `TransactionFeeCalculation` and defining `ActualFeeRefund` concrete implementation - adding support for multiple RefundRelayerForMessagesFromParachain (by adding a `StaticStrProvider` generic param) * Revert to using RuntimeDebug
-
Svyatoslav Nikolsky authored
* optimize justification before submit * fmt * spelling * clippy * fmt again * aaand compilation * clippy
-
- Feb 16, 2023
-
-
Branislav Kontur authored
-
Svyatoslav Nikolsky authored
* ChainWithGrandpa in primitives * clippy ++ spelling * fix benchmarks comppilation
-
Svyatoslav Nikolsky authored
* fix clippy issues * fix? * fix? * forget about extra_unused_type_parameters lint for now
-
- Feb 15, 2023
-
-
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
-
Svyatoslav Nikolsky authored
* refund extra proof bytes in message delivery transaction * Update modules/messages/src/lib.rs Co-authored-by: Adrian Catangiu <[email protected]> * more tests --------- Co-authored-by: Adrian Catangiu <[email protected]>
-
- Feb 14, 2023
-
-
Serban Iorga authored
* RefundRelayerForMessagesFromParachain improvements * Address code review comments
-
- Feb 13, 2023
-
-
Svyatoslav Nikolsky authored
-
Svyatoslav Nikolsky authored
* more tests for message pallet weights * move tests to ensure_weights_are_correct * removed extra tests
-
- Feb 09, 2023
-
-
Svyatoslav Nikolsky authored
* MaxValues for maps in parachain maps * fix compilation
-