mirror of
https://github.com/d0zingcat/ore.git
synced 2026-05-14 07:26:51 +00:00
* deprecate top balance * stub dynamic emissions impl * impl 90% curve * scaffold emissions rate function * emissions curve * implement new supply curve * remove comments * update comment * bump version * test reset * add tests for emissions reduction * test * fix test * bump version
26 lines
860 B
Rust
26 lines
860 B
Rust
use steel::*;
|
|
|
|
use super::OreAccount;
|
|
|
|
/// Bus accounts are responsible for distributing mining rewards. There are 8 busses total
|
|
/// to minimize write-lock contention and allow Solana to process mine instructions in parallel.
|
|
#[repr(C)]
|
|
#[derive(Clone, Copy, Debug, PartialEq, Pod, Zeroable)]
|
|
pub struct Bus {
|
|
/// The ID of the bus account.
|
|
pub id: u64,
|
|
|
|
/// The remaining rewards this bus has left to payout in the current epoch.
|
|
pub rewards: u64,
|
|
|
|
/// The rewards this bus would have paid out in the current epoch if there no limit.
|
|
/// This is used to calculate the updated reward rate.
|
|
pub theoretical_rewards: u64,
|
|
|
|
/// The largest known stake balance seen by the bus this epoch.
|
|
#[deprecated(since = "2.8.0", note = "Top balance is no longer tracked or used")]
|
|
pub top_balance: u64,
|
|
}
|
|
|
|
account!(OreAccount, Bus);
|