Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/ZcashFoundation/zebra into …
Browse files Browse the repository at this point in the history
…get-block-tx-objs
  • Loading branch information
conradoplg committed Dec 13, 2024
2 parents 08f0721 + b0c4d19 commit 483f8c8
Show file tree
Hide file tree
Showing 31 changed files with 786 additions and 890 deletions.
3 changes: 1 addition & 2 deletions zebra-chain/src/transaction/hash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ use std::{fmt, sync::Arc};
use proptest_derive::Arbitrary;

use hex::{FromHex, ToHex};
use serde::{Deserialize, Serialize};

use crate::serialization::{
ReadZcashExt, SerializationError, WriteZcashExt, ZcashDeserialize, ZcashSerialize,
Expand All @@ -56,7 +55,7 @@ use super::{txid::TxIdBuilder, AuthDigest, Transaction};
///
/// [ZIP-244]: https://zips.z.cash/zip-0244
/// [Spec: Transaction Identifiers]: https://zips.z.cash/protocol/protocol.pdf#txnidentifiers
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Serialize, Deserialize, Hash)]
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
#[cfg_attr(any(test, feature = "proptest-impl"), derive(Arbitrary))]
pub struct Hash(pub [u8; 32]);

Expand Down
44 changes: 0 additions & 44 deletions zebra-rpc/src/constants.rs

This file was deleted.

1 change: 0 additions & 1 deletion zebra-rpc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
#![doc(html_root_url = "https://docs.rs/zebra_rpc")]

pub mod config;
pub mod constants;
pub mod methods;
pub mod queue;
pub mod server;
Expand Down
Loading

0 comments on commit 483f8c8

Please sign in to comment.