This commit is contained in:
Hardhat Chad
2025-09-25 12:36:20 -07:00
parent a9a2e87031
commit d7d3cb8463
6 changed files with 171 additions and 154 deletions

View File

@@ -7,13 +7,13 @@ use super::OreAccount;
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq, Pod, Zeroable)]
pub struct Square {
/// The count of miners on this square.
/// The count of miners on each square.
pub count: [u64; 25],
/// The deployments of all players.
/// The deployments of all players on each square.
pub deployed: [[u64; 16]; 25],
/// The miners in each square.
/// The miners authorities on each square.
pub miners: [[Pubkey; 16]; 25],
}