Export genesis creation function (#5252)

This commit is contained in:
Jack May
2019-07-23 21:34:17 -07:00
committed by GitHub
parent 547a7a345f
commit 536b4c1a25
7 changed files with 611 additions and 527 deletions

View File

@@ -2341,19 +2341,18 @@ dependencies = [
"bincode 1.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
"bytecode_verifier 0.1.0 (git+https://github.com/solana-labs/libra?tag=v0.0.0.1)",
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
"compiler 0.1.0 (git+https://github.com/solana-labs/libra?tag=v0.0.0.1)",
"failure_ext 0.1.0 (git+https://github.com/solana-labs/libra?tag=v0.0.0.1)",
"language_e2e_tests 0.1.0 (git+https://github.com/solana-labs/libra?tag=v0.0.0.1)",
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.60 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)",
"proto_conv 0.1.0 (git+https://github.com/solana-labs/libra?tag=v0.0.0.1)",
"protobuf 2.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.97 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.97 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)",
"solana-logger 0.17.0",
"solana-sdk 0.17.0",
"state_view 0.1.0 (git+https://github.com/solana-labs/libra?tag=v0.0.0.1)",
"stdlib 0.1.0 (git+https://github.com/solana-labs/libra?tag=v0.0.0.1)",
"types 0.1.0 (git+https://github.com/solana-labs/libra?tag=v0.0.0.1)",
"vm 0.1.0 (git+https://github.com/solana-labs/libra?tag=v0.0.0.1)",
"vm_cache_map 0.1.0 (git+https://github.com/solana-labs/libra?tag=v0.0.0.1)",

View File

@@ -8,5 +8,5 @@ macro_rules! solana_move_loader_program {
};
}
use solana_move_loader_api::process_instruction;
use solana_move_loader_api::processor::process_instruction;
solana_sdk::solana_entrypoint!(process_instruction);