-
Notifications
You must be signed in to change notification settings - Fork 261
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
Regarding the release PR for aelf project version 1.12.0 #3630
Conversation
…eature/whitelist-to-sdk
2. Add an execution limit for inline transactions 3. Improve compatibility in inline method validation.
Pull request analysis by VIZIPI Below you will find who is the most qualified team member to review your code. Reviewers with knowledge related to these changes
Potential missing files from this Pull requestNo commonly committed files found with a 40% threashold Committed file ranks(click to expand)51.92% [...test/AElf.Kernel.Core.Tests/Extensions/TransactionExtensi] 58.37% [...src/AElf.Sdk.CSharp.Internal/AElf.Sdk.CSharp.Internal.csp] 0.00% [src/AElf.Runtime.CSharp/TransactionConsts.cs] 90.80% [global.json] 98.57% [AElf.All.sln] 99.38% [...contract/AElf.Contracts.Consensus.AEDPoS/AEDPoSContract_P] 95.99% [...src/AElf.CSharp.CodeOps/Validators/Whitelist/IWhitelistPr] 82.87% [src/AElf.Runtime.CSharp.Core/ContractCodeLoadContext.cs] 97.66% [...src/AElf.Kernel.SmartContract/AElf.Kernel.SmartContract.c] 99.32% [test/AElf.Sdk.CSharp.Tests/AElf.Sdk.CSharp.Tests.csproj] |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #3630 +/- ##
==========================================
+ Coverage 73.30% 73.43% +0.12%
==========================================
Files 677 680 +3
Lines 26104 26229 +125
Branches 2353 2358 +5
==========================================
+ Hits 19136 19261 +125
Misses 6815 6815
Partials 153 153
Flags with carried forward coverage won't be shown. Click here to find out more.
|
@@ -200,6 +200,12 @@ private void WhitelistAElfTypes(Whitelist whitelist) | |||
// Selectively allowed types and members | |||
.Namespace("AElf.Cryptography.SecretSharing", Permission.Denied, type => type | |||
.Type(typeof(SecretSharingHelper), Permission.Denied, member => member | |||
.Member(nameof(SecretSharingHelper.DecodeSecret), Permission.Allowed))); | |||
.Member(nameof(SecretSharingHelper.DecodeSecret), Permission.Allowed) | |||
.Member(nameof(SecretSharingHelper.Ed25519Verify), Permission.Allowed) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add a new helper,not SecretSharingHelper
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add a new helper,not SecretSharingHelper
new helpers has been added
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
For Issue: #3612
For issue #3610
For issue #3614