System program is now registered like all other native programs (#5526)

This commit is contained in:
Michael Vines
2019-08-15 21:07:00 -07:00
committed by GitHub
parent e73cbdda61
commit 8258532791
5 changed files with 10 additions and 9 deletions

View File

@ -3,3 +3,7 @@ const ID: [u8; 32] = [
];
crate::solana_name_id!(ID, "11111111111111111111111111111111");
pub fn solana_system_program() -> (String, crate::pubkey::Pubkey) {
("solana_system_program".to_string(), id())
}