Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
Rename loaders
Browse files Browse the repository at this point in the history
  • Loading branch information
jackcmay committed Oct 16, 2018
1 parent d0c19c2 commit b6942fc
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ tokio-codec = "0.1"
untrusted = "0.6.2"
move_funds = { path = "programs/native/move_funds" }
noop = { path = "programs/native/noop" }
sobpf = { path = "programs/native/sobpf" }
solua = { path = "programs/native/solua" }
bpf_loader = { path = "programs/native/bpf_loader" }
lua_loader = { path = "programs/native/lua_loader" }

[[bench]]
name = "bank"
Expand All @@ -138,7 +138,7 @@ members = [
"common",
"programs/native/move_funds",
"programs/native/noop",
"programs/native/sobpf",
"programs/native/solua",
"programs/native/bpf_loader",
"programs/native/lua_loader",
"programs/bpf/noop_rust",
]
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "sobpf"
name = "bpf_loader"
version = "0.1.0"
authors = ["Solana Maintainers <[email protected]>"]

Expand All @@ -15,6 +15,6 @@ serde_derive = "1.0.27"
solana_program_interface = { path = "../../../common" }

[lib]
name = "sobpf"
name = "bpf_loader"
crate-type = ["cdylib"]

File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "solua"
name = "lua_loader"
version = "0.1.0"
authors = ["Solana Maintainers <[email protected]>"]

Expand All @@ -15,6 +15,6 @@ solana_program_interface = { path = "../../../common" }
bincode = "1.0.0"

[lib]
name = "solua"
name = "lua_loader"
crate-type = ["cdylib"]

File renamed without changes.
4 changes: 2 additions & 2 deletions tests/programs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ fn test_transaction_load_lua() {
);
check_tx_results(&bank, &tx, bank.process_transactions(&vec![tx.clone()]));

let name = String::from("solua");
let name = String::from("lua_loader");
let tx = Transaction::write(
&loader,
native_loader::id(),
Expand Down Expand Up @@ -197,7 +197,7 @@ fn test_transaction_load_bpf() {
);
check_tx_results(&bank, &tx, bank.process_transactions(&vec![tx.clone()]));

let name = String::from("sobpf");
let name = String::from("bpf_loader");
let tx = Transaction::write(
&loader,
native_loader::id(),
Expand Down

0 comments on commit b6942fc

Please sign in to comment.