Export ed25519 zebra (#445)
And use that one, and our similar redjubjub export, everywhere. Fixes #405 * Move PRs to 'In Progress' column on project board when created
This commit is contained in:
parent
123ba3674f
commit
b263489af6
|
@ -11,7 +11,14 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: alex-page/github-project-automation-plus@v0.2.4
|
||||
if: github.event_name == 'issues' && github.event.action == 'opened'
|
||||
with:
|
||||
project: Zebra
|
||||
column: To Do
|
||||
repo-token: ${{ secrets.PROJECT_AUTOMATION }}
|
||||
- uses: alex-page/github-project-automation-plus@v0.2.4
|
||||
if: github.event_name == 'pull_request' && github.event.action == 'opened'
|
||||
with:
|
||||
project: Zebra
|
||||
column: In progress
|
||||
repo-token: ${{ secrets.PROJECT_AUTOMATION }}
|
||||
|
|
|
@ -23,12 +23,12 @@ use std::{
|
|||
|
||||
use bech32::{self, FromBase32, ToBase32};
|
||||
use rand_core::{CryptoRng, RngCore};
|
||||
use redjubjub::{self, SpendAuth};
|
||||
|
||||
#[cfg(test)]
|
||||
use proptest_derive::Arbitrary;
|
||||
|
||||
use crate::{
|
||||
redjubjub::{self, SpendAuth},
|
||||
serialization::{ReadZcashExt, SerializationError},
|
||||
Network,
|
||||
};
|
||||
|
|
|
@ -21,6 +21,7 @@ pub mod serialization;
|
|||
pub mod transaction;
|
||||
pub mod types;
|
||||
|
||||
pub use ed25519_zebra;
|
||||
pub use redjubjub;
|
||||
|
||||
#[cfg(test)]
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#[cfg(test)]
|
||||
use proptest::{array, collection::vec, prelude::*};
|
||||
|
||||
use crate::{notes::sprout, proofs::ZkSnarkProof};
|
||||
use crate::{ed25519_zebra, notes::sprout, proofs::ZkSnarkProof};
|
||||
|
||||
/// A _JoinSplit Description_, as described in [protocol specification §7.2][ps].
|
||||
///
|
||||
|
|
Loading…
Reference in New Issue