mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-12-23 12:09:57 +00:00
remove epee
This commit is contained in:
parent
c06d0a47a2
commit
45b5a241ab
2 changed files with 0 additions and 62 deletions
|
@ -9,9 +9,6 @@ use crate::json::output::Output;
|
||||||
///
|
///
|
||||||
/// Used in:
|
/// Used in:
|
||||||
/// - [`/get_block` -> `json`](https://www.getmonero.org/resources/developer-guides/daemon-rpc.html#get_block)
|
/// - [`/get_block` -> `json`](https://www.getmonero.org/resources/developer-guides/daemon-rpc.html#get_block)
|
||||||
///
|
|
||||||
/// # TODO
|
|
||||||
/// The epee implementation on this struct panics.
|
|
||||||
#[derive(Clone, Default, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
#[derive(Clone, Default, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||||
pub struct Block {
|
pub struct Block {
|
||||||
|
@ -24,34 +21,6 @@ pub struct Block {
|
||||||
pub tx_hashes: Vec<String>,
|
pub tx_hashes: Vec<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "epee")]
|
|
||||||
impl cuprate_epee_encoding::EpeeObjectBuilder<Block> for () {
|
|
||||||
fn add_field<B: bytes::Buf>(
|
|
||||||
&mut self,
|
|
||||||
_: &str,
|
|
||||||
_: &mut B,
|
|
||||||
) -> cuprate_epee_encoding::error::Result<bool> {
|
|
||||||
todo!()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn finish(self) -> cuprate_epee_encoding::error::Result<Block> {
|
|
||||||
todo!()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(feature = "epee")]
|
|
||||||
impl cuprate_epee_encoding::EpeeObject for Block {
|
|
||||||
type Builder = ();
|
|
||||||
|
|
||||||
fn number_of_fields(&self) -> u64 {
|
|
||||||
todo!()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn write_fields<B: bytes::BufMut>(self, _: &mut B) -> cuprate_epee_encoding::error::Result<()> {
|
|
||||||
todo!()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// [`Block::miner_tx`].
|
/// [`Block::miner_tx`].
|
||||||
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||||
|
|
|
@ -15,9 +15,6 @@ use crate::json::output::Output;
|
||||||
/// Used in:
|
/// Used in:
|
||||||
/// - [`/get_transactions` -> `txs.as_json`](https://www.getmonero.org/resources/developer-guides/daemon-rpc.html#get_transactions)
|
/// - [`/get_transactions` -> `txs.as_json`](https://www.getmonero.org/resources/developer-guides/daemon-rpc.html#get_transactions)
|
||||||
/// - [`/get_transaction_pool` -> `tx_json`](https://www.getmonero.org/resources/developer-guides/daemon-rpc.html#get_transaction_pool)
|
/// - [`/get_transaction_pool` -> `tx_json`](https://www.getmonero.org/resources/developer-guides/daemon-rpc.html#get_transaction_pool)
|
||||||
///
|
|
||||||
/// # TODO
|
|
||||||
/// The epee implementation on this struct panics.
|
|
||||||
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||||
#[serde(untagged)]
|
#[serde(untagged)]
|
||||||
|
@ -37,34 +34,6 @@ pub enum Transaction {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "epee")]
|
|
||||||
impl cuprate_epee_encoding::EpeeObjectBuilder<Transaction> for () {
|
|
||||||
fn add_field<B: bytes::Buf>(
|
|
||||||
&mut self,
|
|
||||||
_: &str,
|
|
||||||
_: &mut B,
|
|
||||||
) -> cuprate_epee_encoding::error::Result<bool> {
|
|
||||||
todo!()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn finish(self) -> cuprate_epee_encoding::error::Result<Transaction> {
|
|
||||||
todo!()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(feature = "epee")]
|
|
||||||
impl cuprate_epee_encoding::EpeeObject for Transaction {
|
|
||||||
type Builder = ();
|
|
||||||
|
|
||||||
fn number_of_fields(&self) -> u64 {
|
|
||||||
todo!()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn write_fields<B: bytes::BufMut>(self, _: &mut B) -> cuprate_epee_encoding::error::Result<()> {
|
|
||||||
todo!()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// [`Transaction::V1::prefix`] & [`Transaction::V2::prefix`].
|
/// [`Transaction::V1::prefix`] & [`Transaction::V2::prefix`].
|
||||||
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||||
|
|
Loading…
Reference in a new issue