Skip to content

Commit

Permalink
Merge branch 'main' into regtest-allow-transparent-coinbase-spends
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Dec 18, 2024
2 parents 2ba1e3f + 543f066 commit c489d2f
Show file tree
Hide file tree
Showing 35 changed files with 868 additions and 902 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 c489d2f

Please sign in to comment.