Move solana-specific parts of crypto/ into sdk/

This commit is contained in:
Michael Vines 2021-09-28 13:10:43 -07:00
parent b96e07d161
commit b1be9a7907
2 changed files with 2 additions and 10 deletions

View File

@ -13,12 +13,4 @@ getrandom = { version = "0.1", features = ["dummy"] }
num-derive = "0.3"
num-traits = "0.2"
solana-sdk = "=1.7.11"
spl-zk-token-crypto = { path = "../crypto" }
[features]
test-bpf = []
[dev-dependencies]
assert_matches = "1.4.0"
solana-program-test = "=1.7.11"
solana-validator = "=1.7.11"
spl-zk-token-program-sdk = { path = "../sdk" }

View File

@ -5,7 +5,7 @@ use {
solana_sdk::{
ic_msg, instruction::InstructionError, process_instruction::InvokeContext, pubkey::Pubkey,
},
spl_zk_token_crypto::instruction::*,
spl_zk_token_program_sdk::zk_token_proof_instruction::*,
std::result::Result,
};