(&mut self, authority: Pubkey, pyth_price_feed: Pubkey)
| 37 | |
| 38 | impl FeedAccount for Account<'_, Feed> { |
| 39 | fn new(&mut self, authority: Pubkey, pyth_price_feed: Pubkey) -> Result<()> { |
| 40 | self.authority = authority; |
| 41 | self.pyth_price_feed = pyth_price_feed; |
| 42 | self.publish_time = 0; |
| 43 | Ok(()) |
| 44 | } |
| 45 | } |