-
Notifications
You must be signed in to change notification settings - Fork 11
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
Polymesh upgrade v7 #111
Polymesh upgrade v7 #111
Conversation
@@ -380,6 +380,8 @@ | |||
static const char* STR_ME_REMOVE_TICKER_AFFIRMATION_EXEMPTION = "Remove ticker affirmation exemption"; | |||
static const char* STR_ME_PRE_APPROVE_TICKER = "Pre approve ticker"; | |||
static const char* STR_ME_REMOVE_TICKER_PRE_APPROVAL = "Remove ticker pre approval"; | |||
static const char* STR_ME_AS_DERIVATIVE = "As derivative"; |
Check notice
Code scanning / CodeQL
Unused static variable Note
@@ -380,6 +380,8 @@ | |||
static const char* STR_ME_REMOVE_TICKER_AFFIRMATION_EXEMPTION = "Remove ticker affirmation exemption"; | |||
static const char* STR_ME_PRE_APPROVE_TICKER = "Pre approve ticker"; | |||
static const char* STR_ME_REMOVE_TICKER_PRE_APPROVAL = "Remove ticker pre approval"; | |||
static const char* STR_ME_AS_DERIVATIVE = "As derivative"; | |||
static const char* STR_ME_UNLINK_TICKER_FROM_ASSET_ID = "Unlink ticker from asset id"; |
Check notice
Code scanning / CodeQL
Unused static variable Note
switch (itemIdx) { | ||
case 0: | ||
return STR_IT_new_; | ||
default: | ||
return NULL; | ||
} |
Check notice
Code scanning / CodeQL
No trivial switch statements Note
switch (itemIdx) { | ||
case 0: | ||
return STR_IT_maybe_next_score; | ||
default: | ||
return NULL; | ||
} |
Check notice
Code scanning / CodeQL
No trivial switch statements Note
switch (itemIdx) { | ||
case 0: | ||
return STR_IT_supports; | ||
default: | ||
return NULL; | ||
} |
Check notice
Code scanning / CodeQL
No trivial switch statements Note
switch (itemIdx) { | ||
case 0: | ||
return STR_IT_raw_solution; | ||
default: | ||
return NULL; | ||
} |
Check notice
Code scanning / CodeQL
No trivial switch statements Note
switch (itemIdx) { | ||
case 0: /* sudo_set_key_V7 - new_ */; | ||
return _toStringLookupasStaticLookupSource( | ||
&m->basic.sudo_set_key_V7.new_, | ||
outValue, outValueLen, | ||
pageIdx, pageCount); | ||
default: | ||
return parser_no_data; | ||
} |
Check notice
Code scanning / CodeQL
No trivial switch statements Note
switch (itemIdx) { | ||
case 0: /* electionprovidermultiphase_set_minimum_untrusted_score_V7 - maybe_next_score */; | ||
return _toStringOptionElectionScore( | ||
&m->basic.electionprovidermultiphase_set_minimum_untrusted_score_V7.maybe_next_score, | ||
outValue, outValueLen, | ||
pageIdx, pageCount); | ||
default: | ||
return parser_no_data; | ||
} |
Check notice
Code scanning / CodeQL
No trivial switch statements Note
switch (itemIdx) { | ||
case 0: /* electionprovidermultiphase_set_emergency_election_result_V7 - supports */; | ||
return _toStringSupportsAccountId( | ||
&m->basic.electionprovidermultiphase_set_emergency_election_result_V7.supports, | ||
outValue, outValueLen, | ||
pageIdx, pageCount); | ||
default: | ||
return parser_no_data; | ||
} |
Check notice
Code scanning / CodeQL
No trivial switch statements Note
switch (itemIdx) { | ||
case 0: /* electionprovidermultiphase_submit_V7 - raw_solution */; | ||
return _toStringBoxRawSolutionSolutionOfMinerConfig( | ||
&m->basic.electionprovidermultiphase_submit_V7.raw_solution, | ||
outValue, outValueLen, | ||
pageIdx, pageCount); | ||
default: | ||
return parser_no_data; | ||
} |
Check notice
Code scanning / CodeQL
No trivial switch statements Note
d7557c5
to
aec6b80
Compare
aec6b80
to
7d872f8
Compare
Resolving the following issues :
#108
#109
#110