feat(server): ProposalKind::ApproveOneOffTransaction

This commit is contained in:
CleverWild
2026-06-13 21:32:23 +02:00
committed by Skipper
parent 277fb3c92d
commit d12109c2c9
6 changed files with 220 additions and 1 deletions

View File

@@ -520,3 +520,11 @@ pub struct NewProposalVote {
pub approve: bool,
pub signature: Vec<u8>,
}
#[derive(Debug, Insertable)]
#[diesel(table_name = schema::proposal_result, check_for_backend(Sqlite))]
pub struct NewProposalResult {
pub proposal_id: i32,
pub data: Vec<u8>,
}