Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
/node_modules
/target

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's revert this change please.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reverted the .gitignore change. Please take another look.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

# Personal notes (do not commit)
PINOCCHIO_NOTES.md
4 changes: 0 additions & 4 deletions sdk/src/sysvars/clock.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
//! Information about the network's clock, ticks, slots, etc.

// This is necessary since `sol_get_clock_sysvar` is deprecated but still used here.
// It can be removed once the implementation uses `get_sysvar` instead.
#![allow(deprecated)]

use crate::{
account::{AccountView, Ref},
error::ProgramError,
Expand Down
4 changes: 0 additions & 4 deletions sdk/src/sysvars/rent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
//!
//! This is required for the rent sysvar implementation.

// This is necessary since `sol_get_rent_sysvar` is deprecated but still used here.
// It can be removed once the implementation uses `get_sysvar` instead.
#![allow(deprecated)]

use {
crate::{
account::{AccountView, Ref},
Expand Down