Conversation
|
|
||
| for b := uint64(0); b <= latestBucket; b++ { | ||
| encodedBucket, err := types.EncodeToBytes(types.NewU128(*big.NewInt(int64(b)))) | ||
| encodedBucket, err := types.EncodeToBytes(types.NewU64(b)) |
Contributor
There was a problem hiding this comment.
Is this related to the subxt change?
Contributor
Author
There was a problem hiding this comment.
Nope, it's to coordinate with paritytech/polkadot-sdk#8240, which includes an optimized SparseBitmap.
Contributor
Author
|
@claravanstaden Seems like some inbound V2 smoke tests are failing, potentially related to PR#8376. I'll double-check and apply fixes if needed. |
claravanstaden
approved these changes
May 15, 2025
| issued_eth_event_found = true; | ||
| } | ||
| // Issued weth token | ||
| // assert_eq!(issued.asset_id.encode(), expected_weth_id.encode()); |
Contributor
There was a problem hiding this comment.
Do you know why this doesn't work anymore @yrong?
| }) | ||
| } | ||
|
|
||
| const buildHrmpChannels = async () => { |
Contributor
There was a problem hiding this comment.
Why did you move this from the bash scripts to here?
stiiifff
pushed a commit
to datahaven-xyz/snowbridge
that referenced
this pull request
Nov 25, 2025
* Update smoke tests * Update to recent release v0.42.1 * Fix ethereum relay * Improve E2E scripts & Fix inbound tests * Fix format * Fix transact * Update bindings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
It seems that
subxtis not compatible with the recent master branch ofpolkadot-sdk. An error is raised when generating Substrate binds, as shown below.So I upgraded Subxt for compatibility. The main change in this PR addresses the breaking changes introduced in v0.39.0.