This commit is contained in:
Hardhat Chad
2025-05-29 09:58:05 -07:00
parent 6507372413
commit 79a9ac3b40
17 changed files with 182 additions and 167 deletions

View File

@@ -2,15 +2,15 @@ use steel::*;
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq, Pod, Zeroable)]
pub struct BetEvent {
pub authority: Pubkey,
pub struct BuryEvent {
pub amount: u64,
pub ts: u64,
}
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq, Pod, Zeroable)]
pub struct BuryEvent {
pub struct DeployEvent {
pub authority: Pubkey,
pub amount: u64,
pub ts: u64,
}
@@ -23,6 +23,6 @@ pub struct PayoutEvent {
pub ts: u64,
}
event!(BetEvent);
event!(BuryEvent);
event!(DeployEvent);
event!(PayoutEvent);