Skip to content
Snippets Groups Projects
Commit bd87aee7 authored by poka's avatar poka :speech_balloon:
Browse files

fix: check if nextIssuableOn < blocNumber

parent 684974cd
Branches
Tags
No related merge requests found
Pipeline #15903 failed
...@@ -576,7 +576,7 @@ class SubstrateSdk with ChangeNotifier { ...@@ -576,7 +576,7 @@ class SubstrateSdk with ChangeNotifier {
_removableOn.toString() + _removableOn.toString() +
'\n' + '\n' +
_nextIssuableOn.toString()); _nextIssuableOn.toString());
if (_renewableOn == 0 && _nextIssuableOn == 0) { if (_renewableOn == 0 && _nextIssuableOn < blocNumber) {
return true; return true;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment