Skip to content

Commit

Permalink
Merge pull request #3607 from AElfProject/release/1.10.0
Browse files Browse the repository at this point in the history
Add groth16 and poseidong to whitelist
  • Loading branch information
JimAelf authored Aug 19, 2024
2 parents 499125c + c51fc40 commit 7236a8e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 16 deletions.
30 changes: 15 additions & 15 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# Azure Pipelines configuration file
jobs:
- template: templates/build-template-window.yml
parameters:
parts: 3
n: 1
codecoverage: true
- template: templates/build-template-window.yml
parameters:
parts: 3
n: 2
codecoverage: false
- template: templates/build-template-window.yml
parameters:
parts: 3
n: 3
codecoverage: false
# - template: templates/build-template-window.yml
# parameters:
# parts: 3
# n: 1
# codecoverage: true
# - template: templates/build-template-window.yml
# parameters:
# parts: 3
# n: 2
# codecoverage: false
# - template: templates/build-template-window.yml
# parameters:
# parts: 3
# n: 3
# codecoverage: false
- template: templates/build-template-linux.yml
parameters:
parts: 3
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "8.0.303"
"version": "8.0.x"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ private void WhitelistAssemblies(Whitelist whitelist)
.Assembly(typeof(IMethod).Assembly, Trust.Full) // AElf.CSharp.Core
.Assembly(typeof(SecretSharingHelper).Assembly, Trust.Partial) // AElf.Cryptography
.Assembly(typeof(ISmartContractBridgeContext).Assembly, Trust.Full) // AElf.Kernel.SmartContract.Shared
.Assembly(typeof(Groth16.Net.Verifier).Assembly, Trust.Full) // AElf.Cryptography.ECDSA
.Assembly(typeof(Poseidon.Net.Poseidon).Assembly, Trust.Full)
;
}

Expand Down

0 comments on commit 7236a8e

Please sign in to comment.