add function triggered_since field
This commit is contained in:
parent
fec5af232e
commit
6bf375c175
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "switchboard-solana"
|
||||
version = "0.8.11"
|
||||
version = "0.8.12"
|
||||
edition = "2021"
|
||||
description = "A Rust library to interact with Switchboard accounts."
|
||||
readme = "README.md"
|
||||
|
|
|
@ -132,8 +132,11 @@ pub struct FunctionAccountData {
|
|||
/// The unix timestamp when the function was created.
|
||||
pub created_at: i64,
|
||||
|
||||
/// Time this function has been sitting in an explicitly triggered state
|
||||
pub triggered_since: i64,
|
||||
|
||||
/// Reserved.
|
||||
pub _ebuf: [u8; 871],
|
||||
pub _ebuf: [u8; 863],
|
||||
}
|
||||
|
||||
impl anchor_lang::AccountDeserialize for FunctionAccountData {
|
||||
|
|
Loading…
Reference in New Issue