Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace js-subscriptions with dart #1570

Merged
merged 23 commits into from
Nov 25, 2023
Merged

Replace js-subscriptions with dart #1570

merged 23 commits into from
Nov 25, 2023

Conversation

clangenb
Copy link
Member

@clangenb clangenb commented Nov 23, 2023

@clangenb clangenb added A2-technical PR introduces technical changes B0-low Does not elevate a release containing this beyond "low priority" C0-breaksnothing PR does not introduce any breaking changes labels Nov 24, 2023
@clangenb clangenb merged commit e56ddc7 into master Nov 25, 2023
15 of 17 checks passed
@clangenb clangenb deleted the cl/replace-js-getters branch November 25, 2023 02:30
@@ -3,7 +3,7 @@ class Header {
Header(this.hash, this.number);

factory Header.fromJson(Map<String, dynamic> json) {
return Header(json['hash'] as String?, json['number'] as int?);
return Header(json['hash'] as String?, BigInt.parse(json['number'] as String).toInt());
Copy link
Member Author

Choose a reason for hiding this comment

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

Culprit of app startup failure.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A2-technical PR introduces technical changes B0-low Does not elevate a release containing this beyond "low priority" C0-breaksnothing PR does not introduce any breaking changes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

replace JS-subscriptions with polkadart
1 participant