Skip to content

Commit

Permalink
Add Poseidon to a whitelist.
Browse files Browse the repository at this point in the history
  • Loading branch information
chopin-fan committed Jul 15, 2024
1 parent 3af57b7 commit 76cc05b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/AElf.CSharp.CodeOps/AElf.CSharp.CodeOps.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

<ItemGroup>
<PackageReference Include="Basic.Reference.Assemblies.Net60" Version="1.4.1" />
<PackageReference Include="Mono.Cecil" Version="0.11.4" />
<PackageReference Include="Groth16.Net" Version="1.0.3" />
<PackageReference Include="Mono.Cecil" Version="0.11.4" />
<PackageReference Include="Poseidon.Net" Version="0.1.0" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ private void WhitelistAssemblies(Whitelist whitelist)
.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 76cc05b

Please sign in to comment.