fedimint-client 0.11.1

Library for sending transactions to the Fedimint federation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use fedimint_core::encoding::{Decodable, Encodable};
use fedimint_core::impl_db_record;
use fedimint_eventlog::EventLogTrimableId;

use crate::db::DbKeyPrefixInternalReserved;

#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Encodable, Decodable)]
pub(crate) struct DefaultApplicationEventLogKey;

impl_db_record!(
    key = DefaultApplicationEventLogKey,
    value = EventLogTrimableId,
    db_prefix = DbKeyPrefixInternalReserved::DefaultApplicationEventLogPos,
);