We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e20c1b commit d810042Copy full SHA for d810042
program/rust/src/c_oracle_header.rs
@@ -1,6 +1,9 @@
1
#![allow(non_upper_case_globals)]
2
#![allow(non_camel_case_types)]
3
#![allow(non_snake_case)]
4
+//we do not use all the variables in oracle.h, so this helps with the warnings
5
+#![allow(unused_variables)]
6
+#![allow(dead_code)]
7
//All the custom trait imports should go here
8
use borsh::{BorshSerialize, BorshDeserialize};
9
//bindings.rs is generated by build.rs to include
0 commit comments