Skip to content
This repository was archived by the owner on Jun 30, 2022. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ pub struct PriceComp
pub struct Ema
{
pub val : i64, // current value of ema
numer : i64, // numerator state for next update
denom : i64 // denominator state for next update
pub numer : i64, // numerator state for next update
pub denom : i64 // denominator state for next update
}

// Price account structure
Expand Down