Skip to content
Snippets Groups Projects
Commit 895fee13 authored by Éloïs's avatar Éloïs
Browse files

feat(module): add receivedTime to pendingTxs on txHistory

parent df4fa9e0
No related branches found
No related tags found
No related merge requests found
Pipeline #12187 passed
......@@ -106,8 +106,8 @@ pub trait DuniterModule: 'static + Sized {
pub struct TxsHistoryForBma {
pub sent: Vec<(TransactionDocumentV10, Blockstamp, i64)>,
pub received: Vec<(TransactionDocumentV10, Blockstamp, i64)>,
pub sending: Vec<TransactionDocumentV10>,
pub pending: Vec<TransactionDocumentV10>,
pub sending: Vec<(TransactionDocumentV10, i64)>,
pub pending: Vec<(TransactionDocumentV10, i64)>,
}
#[macro_export]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment