impl Copy for Anchor

This commit is contained in:
Jack Grigg 2021-06-15 15:42:06 +01:00
parent 019ae7da8e
commit 5264d53498
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ use rand::RngCore;
use std::iter;
/// The root of an Orchard commitment tree.
#[derive(Eq, PartialEq, Clone, Debug)]
#[derive(Eq, PartialEq, Clone, Copy, Debug)]
pub struct Anchor(pallas::Base);
impl From<pallas::Base> for Anchor {