mirror of
https://github.com/d0zingcat/ore.git
synced 2026-05-16 23:16:47 +00:00
15 lines
271 B
Rust
15 lines
271 B
Rust
use steel::*;
|
|
|
|
use super::OreAccount;
|
|
|
|
#[repr(C)]
|
|
#[derive(Clone, Copy, Debug, PartialEq, Pod, Zeroable)]
|
|
pub struct Market {
|
|
/// The id of the block this market is associated with.
|
|
pub block_id: u64,
|
|
}
|
|
|
|
// TODO Bonding curve stuff
|
|
|
|
account!(OreAccount, Market);
|