Support trailing commas in create_db

This commit is contained in:
Luke Parker
2023-11-18 20:54:37 -05:00
parent be48dcc4a4
commit 6e4ecbc90c
7 changed files with 7 additions and 7 deletions

View File

@@ -14,7 +14,7 @@ create_db! {
CosignTriggered: () -> (),
IntendedCosign: () -> (u64, Option<u64>),
BlockHasEvents: (block: u64) -> u8,
CosignTransactions: (network: NetworkId) -> Vec<(Session, u64, [u8; 32])>
CosignTransactions: (network: NetworkId) -> Vec<(Session, u64, [u8; 32])>,
}
}