Skip to content

Commit 16baae6

Browse files
authored
fix(pythnet-sdk): fix modifiers (#809)
1 parent dab04d6 commit 16baae6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pythnet/pythnet_sdk/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ pub(crate) type PriceId = Pubkey;
88

99
/// Official Message Buffer Program Id
1010
/// pubkey!("Vbmv1jt4vyuqBZcpYPpnVhrqVe5e6ZPb6JxDcffRHUM");
11-
const MESSAGE_BUFFER_PID: Pubkey = [
11+
pub const MESSAGE_BUFFER_PID: Pubkey = [
1212
7, 83, 149, 9, 30, 102, 77, 194, 50, 151, 133, 40, 118, 10, 93, 152, 174, 44, 244, 56, 27, 47,
1313
234, 218, 173, 153, 254, 48, 102, 178, 128, 18,
1414
];
1515

1616
/// Pubkey::find_program_address(&[b"emitter"], &sysvar::accumulator::id());
1717
/// pubkey!("G9LV2mp9ua1znRAfYwZz5cPiJMAbo1T6mbjdQsDZuMJg");
18-
const ACCUMULATOR_EMITTER_ADDRESS: Pubkey = [
18+
pub const ACCUMULATOR_EMITTER_ADDRESS: Pubkey = [
1919
225, 1, 250, 237, 172, 88, 81, 227, 43, 155, 35, 181, 249, 65, 26, 140, 43, 172, 74, 174, 62,
2020
212, 221, 123, 129, 29, 209, 167, 46, 164, 170, 113,
2121
];

0 commit comments

Comments
 (0)