Skip to content

Remove moonbeam-xcm-benchmarks and only use pallet-xcm-benchmarks#3318

Merged
RomarQ merged 5 commits intomasterfrom
tarekkma/remove-moonbeam-xcm-bench
Jun 23, 2025
Merged

Remove moonbeam-xcm-benchmarks and only use pallet-xcm-benchmarks#3318
RomarQ merged 5 commits intomasterfrom
tarekkma/remove-moonbeam-xcm-bench

Conversation

@TarekkMA
Copy link
Copy Markdown
Contributor

@TarekkMA TarekkMA commented Jun 19, 2025

Removing moonbeam-xcm-benchmarks and only using pallet-xcm-benchmarks.

This PR rely on 3 cherry picks on the polkasdk fork to include paritytech/polkadot-sdk#7944:

Summary by CodeRabbit

  • New Features

    • Introduced comprehensive XCM (Cross-Consensus Messaging) weight calculation modules for Moonbeam, Moonriver, and Moonbase runtimes, providing detailed and benchmark-based weight estimations for XCM instructions.
    • Publicly re-exported new XCM weights modules for external use in all runtimes.
  • Refactor

    • Replaced usage of the external benchmarking crate for XCM weights with new in-tree modules, updating runtime configurations and integration tests accordingly.
    • Updated type aliases and imports to use the new local XCM weight calculation logic.
  • Chores

    • Removed the deprecated moonbeam-xcm-benchmarks crate and all related dependencies from the codebase and runtimes.

@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Jun 19, 2025

Important

Review skipped

Auto reviews are limited to specific labels.

🏷️ Labels to auto review (1)
  • agent-review

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Walkthrough

This change removes the moonbeam-xcm-benchmarks crate and all related benchmarking code from the codebase, including its configuration, mock setups, and trait implementations. It replaces the dependency on this external benchmarking crate with new, locally defined XCM weight calculation modules in each runtime (Moonbeam, Moonriver, Moonbase). The new modules provide comprehensive weight calculation logic for XCM operations, and public re-exports are added for external access. All references, imports, and type aliases are updated accordingly.

Changes

File(s) / Path(s) Change Summary
Cargo.toml, runtime/common/Cargo.toml, runtime/moonbase/Cargo.toml, runtime/moonbeam/Cargo.toml, runtime/moonriver/Cargo.toml Remove moonbeam-xcm-benchmarks from workspace members, dependencies, and features.
pallets/moonbeam-xcm-benchmarks/ (all files) Entire benchmarking pallet and its modules deleted: configuration, benchmarking logic, mocks, and public traits.
runtime/common/src/apis.rs Remove all moonbeam_xcm_benchmarks imports and trait implementations; update method signatures as needed.
runtime/moonbase/src/lib.rs, runtime/moonbeam/src/lib.rs, runtime/moonriver/src/lib.rs Add public re-export of new XCM weights module for each runtime.
runtime/moonbase/src/weights/mod.rs, runtime/moonbeam/src/weights/mod.rs, runtime/moonriver/src/weights/mod.rs Add new xcm module to public exports for each runtime.
runtime/moonbase/src/weights/xcm/, runtime/moonbeam/src/weights/xcm/, runtime/moonriver/src/weights/xcm/ Add new modules: fungible.rs, generic.rs, mod.rs implementing XCM weight calculation logic.
runtime/moonbase/src/weights/xcm/mod.rs, runtime/moonbeam/src/weights/xcm/mod.rs, runtime/moonriver/src/weights/xcm/mod.rs Implement traits and structs for XCM weight calculation and aggregation.
runtime/moonbase/src/xcm_config.rs, runtime/moonbeam/src/xcm_config.rs, runtime/moonriver/src/xcm_config.rs Update XcmWeigher type alias to use new local weights module.
runtime/moonbase/tests/integration_test.rs, runtime/moonbeam/tests/integration_test.rs, runtime/moonriver/tests/integration_test.rs Update imports to use new runtime-specific XCM weights modules.

Sequence Diagram(s)

sequenceDiagram
    participant Runtime
    participant WeightsModule
    participant XCMInstruction

    Runtime->>WeightsModule: Request weight for XCM instruction (e.g., transfer_asset)
    WeightsModule->>WeightsModule: Select appropriate weight function (fungible/generic)
    WeightsModule->>XCMInstruction: Aggregate per-asset or per-instruction weights
    WeightsModule-->>Runtime: Return computed weight
Loading

Suggested labels

D3-trivial

Poem

In the warren, code was swept away,
Old benchmarks gone, new weights here to stay.
XCM hops with a lighter load,
Each runtime now with weights bestowed.
The bunnies cheer, their work complete—
Hopping forward, code trim and neat!
🐇✨


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@github-actions
Copy link
Copy Markdown
Contributor

Moonbase Weight Difference Report

File Extrinsic Old New Change Percent

Moonriver Weight Difference Report

File Extrinsic Old New Change Percent

Moonbeam Weight Difference Report

File Extrinsic Old New Change Percent

@TarekkMA TarekkMA added B7-runtimenoteworthy Changes should be noted in any runtime-upgrade release notes D5-nicetohaveaudit⚠️ PR contains trivial changes to logic that should be properly reviewed. not-breaking Does not need to be mentioned in breaking changes labels Jun 19, 2025
@TarekkMA
Copy link
Copy Markdown
Contributor Author

@coderabbitai review

@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Jun 19, 2025

✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

Copy link
Copy Markdown

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

♻️ Duplicate comments (2)
runtime/moonriver/src/weights/xcm/generic.rs (1)

405-412: Fix identical execution time overflow in export_message function.

Same issue as in the Moonbeam version - the execution time appears to be a u64 overflow.

This is the same critical issue found in runtime/moonbeam/src/weights/xcm/generic.rs at lines 405-412. The minimum execution time needs to be corrected.

runtime/moonriver/src/weights/xcm/mod.rs (1)

139-148: Address commented logic (duplicate of Moonbeam issue).

Same issue as in the Moonbeam version regarding uncertain weight calculation for initiate_reserve_withdraw.

This is the same issue found in runtime/moonbeam/src/weights/xcm/mod.rs at lines 139-148. The commented code needs clarification.

🧹 Nitpick comments (2)
runtime/moonbeam/src/xcm_config.rs (1)

63-63: Remove unused import
The import use pallet_evm::Call::create; does not appear to be used in this file. Please remove it to avoid dead code and satisfy linting rules.

runtime/moonbeam/src/weights/xcm/mod.rs (1)

105-120: Consider more nuanced weight handling for unsupported HRMP operations.

While returning Weight::MAX is safe for unsupported HRMP channel operations, this might be overly conservative and could prevent legitimate XCM programs from executing efficiently.

Consider returning a more measured weight that reflects the actual cost of rejecting the operation:

	fn hrmp_new_channel_open_request(
		_sender: &u32,
		_max_message_size: &u32,
		_max_capacity: &u32,
	) -> XCMWeight {
-		// XCM Executor does not currently support HRMP channel operations
-		Weight::MAX
+		// XCM Executor does not currently support HRMP channel operations
+		// Return a reasonable weight for operation rejection
+		XcmGeneric::<Runtime>::trap()
	}
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between ca951b7 and 8e3c337.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (31)
  • Cargo.toml (0 hunks)
  • pallets/moonbeam-xcm-benchmarks/Cargo.toml (0 hunks)
  • pallets/moonbeam-xcm-benchmarks/src/generic/benchmarking.rs (0 hunks)
  • pallets/moonbeam-xcm-benchmarks/src/generic/mock.rs (0 hunks)
  • pallets/moonbeam-xcm-benchmarks/src/generic/mod.rs (0 hunks)
  • pallets/moonbeam-xcm-benchmarks/src/lib.rs (0 hunks)
  • pallets/moonbeam-xcm-benchmarks/src/mock.rs (0 hunks)
  • runtime/common/Cargo.toml (0 hunks)
  • runtime/common/src/apis.rs (2 hunks)
  • runtime/moonbase/Cargo.toml (0 hunks)
  • runtime/moonbase/src/lib.rs (1 hunks)
  • runtime/moonbase/src/weights/mod.rs (1 hunks)
  • runtime/moonbase/src/weights/xcm/mod.rs (1 hunks)
  • runtime/moonbase/src/xcm_config.rs (1 hunks)
  • runtime/moonbase/tests/integration_test.rs (2 hunks)
  • runtime/moonbeam/Cargo.toml (0 hunks)
  • runtime/moonbeam/src/lib.rs (1 hunks)
  • runtime/moonbeam/src/weights/mod.rs (1 hunks)
  • runtime/moonbeam/src/weights/xcm/fungible.rs (1 hunks)
  • runtime/moonbeam/src/weights/xcm/generic.rs (1 hunks)
  • runtime/moonbeam/src/weights/xcm/mod.rs (1 hunks)
  • runtime/moonbeam/src/xcm_config.rs (2 hunks)
  • runtime/moonbeam/tests/integration_test.rs (1 hunks)
  • runtime/moonriver/Cargo.toml (0 hunks)
  • runtime/moonriver/src/lib.rs (1 hunks)
  • runtime/moonriver/src/weights/mod.rs (1 hunks)
  • runtime/moonriver/src/weights/xcm/fungible.rs (1 hunks)
  • runtime/moonriver/src/weights/xcm/generic.rs (1 hunks)
  • runtime/moonriver/src/weights/xcm/mod.rs (1 hunks)
  • runtime/moonriver/src/xcm_config.rs (1 hunks)
  • runtime/moonriver/tests/integration_test.rs (1 hunks)
💤 Files with no reviewable changes (11)
  • runtime/moonbeam/Cargo.toml
  • runtime/common/Cargo.toml
  • runtime/moonriver/Cargo.toml
  • Cargo.toml
  • runtime/moonbase/Cargo.toml
  • pallets/moonbeam-xcm-benchmarks/src/lib.rs
  • pallets/moonbeam-xcm-benchmarks/src/generic/mod.rs
  • pallets/moonbeam-xcm-benchmarks/Cargo.toml
  • pallets/moonbeam-xcm-benchmarks/src/mock.rs
  • pallets/moonbeam-xcm-benchmarks/src/generic/mock.rs
  • pallets/moonbeam-xcm-benchmarks/src/generic/benchmarking.rs
⏰ Context from checks skipped due to timeout of 90000ms (3)
  • GitHub Check: build-and-coverage
  • GitHub Check: build
  • GitHub Check: rust-test
🔇 Additional comments (26)
runtime/moonbase/src/weights/mod.rs (1)

60-60: Publicly export new XCM weights module
The xcm module is now exposed to integrate the local XCM weight calculations replacing the removed external benchmarks.

runtime/moonbeam/src/weights/mod.rs (1)

59-59: Publicly export new XCM weights module
Adding pub mod xcm; aligns Moonbeam runtime weights with the new internal XCM benchmarks.

runtime/moonriver/src/weights/mod.rs (1)

59-59: Publicly export new XCM weights module
The xcm export enables the new Moonriver-local XCM weight implementations.

runtime/moonbeam/tests/integration_test.rs (2)

44-44: Use local moonbeam_xcm_weights re-export
Replaces the external benchmark crate import with the runtime’s moonbeam_xcm_weights re-export.


52-52: Import XcmWeight from local module
Brings in the new XcmWeight type for test assertions.

runtime/moonriver/tests/integration_test.rs (1)

44-44: LGTM! Clean migration to local XCM weight definitions.

The import changes correctly replace the external moonbeam-xcm-benchmarks dependency with the new local moonriver_xcm_weights module. The interface remains compatible as evidenced by the existing test usage at line 2479, ensuring a seamless transition to the locally maintained weight calculations.

Also applies to: 51-51

runtime/moonbase/src/lib.rs (1)

146-146: LGTM! Clean public re-export for local XCM weights.

This change correctly exposes the local XCM weight module under a clear, runtime-specific alias, facilitating the migration away from the external moonbeam-xcm-benchmarks crate.

runtime/moonbase/src/weights/xcm/mod.rs (1)

24-24: LGTM! Proper re-export of local WeightInfo.

This change correctly re-exports the WeightInfo from the local generic module, completing the migration from external benchmarking dependencies to local weight calculation modules.

runtime/moonriver/src/lib.rs (1)

147-147: Expose XCM weights publicly under a clear alias
This adds pub use weights::xcm as moonriver_xcm_weights;. Verify that all references to XCM weights (e.g., in xcm_config.rs and integration tests) now use this alias, and ensure naming consistency with other chain runtimes.

runtime/moonbeam/src/lib.rs (1)

140-142: Ensure the new XCM weights re-export is correct
The added pub use weights::xcm as moonbeam_xcm_weights; re-exports the local XCM weight module. Confirm that weights::xcm contains all required types (e.g., XcmWeight) and that other runtimes follow the same alias to maintain consistency.

runtime/moonbeam/src/xcm_config.rs (1)

199-204: Validate the new XcmWeigher alias configuration
The XcmWeigher is now bound to the local crate::weights::xcm::XcmWeight<Runtime, RuntimeCall>. Ensure this change aligns with the removal of the external benchmarking crate and that all XCM executors reference XcmWeigher correctly.

runtime/moonbase/tests/integration_test.rs (2)

41-45: Update imports to use the local weights module
The change correctly replaces references to the removed external benchmark crate by pulling in moonbase_xcm_weights alongside existing runtime types. Ensure all downstream uses (e.g., in xcm_config and integration tests) reference this new module.


60-60: Import XcmWeight from the new local crate
Bringing in XcmWeight from moonbase_xcm_weights aligns with the weight‐calculation calls later in this file. Confirm that the runtime’s lib.rs publicly re-exports this module so the tests compile cleanly.

runtime/moonriver/src/xcm_config.rs (1)

208-208: LGTM! Transitioning to local XCM weight implementation.

The change successfully updates the XcmWeigher type alias to use the local runtime-specific weight implementation instead of the external moonbeam-xcm-benchmarks crate. This aligns with the PR objectives to consolidate benchmarking efforts and use locally defined weight calculations.

runtime/moonbase/src/xcm_config.rs (1)

214-214: LGTM! Transitioning to local XCM weight implementation.

The change successfully updates the XcmWeigher type alias to use the local runtime-specific weight implementation instead of the external moonbeam-xcm-benchmarks crate. This change is consistent with the moonriver runtime and aligns with the PR objectives.

runtime/common/src/apis.rs (2)

818-818: LGTM! Adding required import for updated API.

The WeightLimit import is needed for the updated worst_case_for_trader() method signature in the benchmarking configuration.


1039-1041: LGTM! Updated to match upstream pallet-xcm-benchmarks API.

The method signature change from fee_asset() to worst_case_for_trader() with the new return type Result<(Asset, WeightLimit), BenchmarkError> aligns with the upstream Polkadot SDK changes mentioned in the PR objectives. The functionality remains the same as it still returns Err(BenchmarkError::Skip).

runtime/moonriver/src/weights/xcm/fungible.rs (3)

25-27: Verify proof size constants are appropriate for Moonriver.

The proof size constants are copied from statemint benchmarks. Please verify these values are appropriate for the Moonriver runtime, as different runtimes may have different storage layouts and proof requirements.


31-71: LGTM! Well-structured weight calculation implementation.

The implementation correctly:

  • Uses trait bounds to ensure required pallets are available
  • Differentiates between ERC20 and foreign assets using appropriate pallet methods
  • Delegates to pallet-specific weight functions for accurate calculations
  • Disables unsupported operations (teleport) by returning Weight::MAX
  • Provides reasonable fallback weights for reserve operations

The asset type detection and weight delegation approach is appropriate for the Moonbeam ecosystem.


50-50: Verify hardcoded weight values are appropriate.

The hardcoded weight values of 200_000_000 should be verified to ensure they're appropriate for the Moonriver runtime operations. Consider documenting the rationale for these specific values or deriving them from benchmarks.

Also applies to: 61-61, 69-69

runtime/moonbeam/src/weights/xcm/fungible.rs (3)

25-27: Verify proof size constants are appropriate for Moonbeam.

The proof size constants are copied from statemint benchmarks. Please verify these values are appropriate for the Moonbeam runtime, as different runtimes may have different storage layouts and proof requirements.


31-71: LGTM! Consistent implementation with Moonriver.

The implementation follows the same well-structured approach as the Moonriver version:

  • Proper trait bounds for required pallets
  • Asset type differentiation using appropriate pallet methods
  • Delegation to pallet-specific weight functions
  • Appropriate handling of unsupported operations

The consistency between Moonbeam and Moonriver implementations is appropriate given their similar architectures.


50-50: Verify hardcoded weight values are appropriate.

The hardcoded weight values of 200_000_000 match the Moonriver implementation. Please verify these values are appropriate for both runtimes or if runtime-specific values should be used based on their respective characteristics.

Also applies to: 61-61, 69-69

runtime/moonbeam/src/weights/xcm/mod.rs (2)

41-53: LGTM: Well-implemented asset filter weight calculation.

The WeighMultiAssetsFilter implementation correctly handles different asset filter variants with proper bounds checking using min(MAX_ASSETS, *count) to prevent overflow.


139-148: Address the commented logic and improve documentation.

The commented code and explanation suggest uncertainty about the correct weight calculation for initiate_reserve_withdraw. This needs clarification.

Please verify whether the current implementation correctly reflects the actual computational cost of initiate_reserve_withdraw. The comment suggests it should scale with number of assets, but the current implementation uses a fixed weight.

#!/bin/bash
# Search for other initiate_reserve_withdraw implementations to understand expected behavior
ast-grep --pattern $'fn initiate_reserve_withdraw($$$) {
  $$$
}'
runtime/moonbeam/src/weights/xcm/generic.rs (1)

387-393: Verify placeholder weight values for unsupported operations.

Multiple functions return uniform weights of 500_000_000_000 picoseconds, suggesting these may be placeholder values rather than actual benchmarked results.

Please verify that these weight values are appropriate for the actual cost of these operations:

#!/bin/bash
# Check if these are actual benchmark results or placeholders
rg "500_000_000_000" --type rust -A 2 -B 2

Also applies to: 421-427, 431-437, 439-445, 447-455

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Jun 19, 2025

WASM runtime size check:

Compared to target branch

Moonbase runtime: 2372 KB (-8 KB) ✅

Moonbeam runtime: 2356 KB (+8 KB) ⚠️

Moonriver runtime: 2356 KB (-4 KB) ✅

Compared to latest release (runtime-3701)

Moonbase runtime: 2372 KB (+316 KB compared to latest release) ⚠️

Moonbeam runtime: 2356 KB (+308 KB compared to latest release) ⚠️

Moonriver runtime: 2356 KB (+304 KB compared to latest release) ⚠️

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Jun 19, 2025

Coverage Report

@@                          Coverage Diff                           @@
##           master   tarekkma/remove-moonbeam-xcm-bench      +/-   ##
======================================================================
- Coverage   75.39%                               74.28%   -1.11%     
+ Files         407                                  412       +5     
+ Lines      101610                               103214    +1604     
======================================================================
+ Hits        76604                                76671      +67     
+ Misses      25006                                26543    +1537     
Files Changed Coverage
/node/cli/src/cli.rs 29.79% (+0.32%) 🔼
/pallets/moonbeam-foreign-assets/src/lib.rs 80.21% (-0.11%) 🔽
/pallets/parachain-staking/src/inflation.rs 87.66% (-0.16%) 🔽
/pallets/parachain-staking/src/tests.rs 90.90% (-0.03%) 🔽
/primitives/xcm/src/ethereum_xcm.rs 97.20% (-1.17%) 🔽
/runtime/common/src/apis.rs 85.26% (+0.06%) 🔼
/runtime/common/src/impl_moonbeam_xcm_call_tracing.rs 38.98% (+0.80%) 🔼
/runtime/evm_tracer/src/lib.rs 65.96% (+1.67%) 🔼

Coverage generated Fri Jun 20 11:31:45 UTC 2025

@TarekkMA TarekkMA marked this pull request as ready for review June 19, 2025 10:59
@RomarQ RomarQ added D3-trivial PR contains trivial changes in a runtime directory that do not require an audit and removed D5-nicetohaveaudit⚠️ PR contains trivial changes to logic that should be properly reviewed. labels Jun 23, 2025
@RomarQ
Copy link
Copy Markdown
Contributor

RomarQ commented Jun 23, 2025

My previous remarks will be addressed in a follow-up PR.

@RomarQ RomarQ merged commit b943e2e into master Jun 23, 2025
43 of 44 checks passed
@RomarQ RomarQ deleted the tarekkma/remove-moonbeam-xcm-bench branch June 23, 2025 12:33
@RomarQ RomarQ added the weight-updates This pull request updates the weights label Jun 23, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

B7-runtimenoteworthy Changes should be noted in any runtime-upgrade release notes D3-trivial PR contains trivial changes in a runtime directory that do not require an audit not-breaking Does not need to be mentioned in breaking changes weight-updates This pull request updates the weights

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants