Initial integration of dynamic contracts and native module loading (#1256)

* Integration of native dynamic programs
This commit is contained in:
jackcmay
2018-09-23 22:13:44 -07:00
committed by GitHub
parent a1f01fb8f8
commit 26b1466ef6
12 changed files with 604 additions and 15 deletions

6
programs/noop/src/lib.rs Normal file
View File

@@ -0,0 +1,6 @@
extern crate solana;
use solana::dynamic_program::KeyedAccount;
#[no_mangle]
pub extern "C" fn process(_infos: &mut Vec<KeyedAccount>, _data: &[u8]) {}