Skip to content

Commit

Permalink
style: rename without pop api
Browse files Browse the repository at this point in the history
  • Loading branch information
Daanvdplas committed Apr 22, 2024
1 parent ea28c51 commit f77f2bb
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion pop-api/examples/balance-transfer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "pop_api_balances"
name = "balances"
version = "0.1.0"
authors = ["[your_name] <[your_email]>"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion pop-api/examples/nfts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "pop_api_nfts"
name = "nfts"
version = "0.1.0"
authors = ["[your_name] <[your_email]>"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion pop-api/examples/place-spot-order/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "pop_api_spot_order"
name = "spot_order"
version = "0.1.0"
authors = ["[your_name] <[your_email]>"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion pop-api/examples/read-runtime-state/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "pop_api_read_relay_blocknumber"
name = "read_relay_blocknumber"
version = "0.1.0"
authors = ["[your_name] <[your_email]>"]
edition = "2021"
Expand Down
10 changes: 5 additions & 5 deletions runtime/devnet/src/extensions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ mod tests {
let _ = env_logger::try_init();

let (wasm_binary, _) = load_wasm_module::<Runtime>(
"../../pop-api/examples/balance-transfer/target/ink/pop_api_balances.wasm",
"../../pop-api/examples/balance-transfer/target/ink/balances.wasm",
)
.unwrap();

Expand Down Expand Up @@ -481,7 +481,7 @@ mod tests {
let _ = env_logger::try_init();

let (wasm_binary, _) = load_wasm_module::<Runtime>(
"../../pop-api/examples/nfts/target/ink/pop_api_nfts.wasm",
"../../pop-api/examples/nfts/target/ink/nfts.wasm",
)
.unwrap();

Expand Down Expand Up @@ -561,7 +561,7 @@ mod tests {
let _ = env_logger::try_init();

let (wasm_binary, _) = load_wasm_module::<Runtime>(
"../../pop-api/examples/nfts/target/ink/pop_api_nfts.wasm",
"../../pop-api/examples/nfts/target/ink/nfts.wasm",
)
.unwrap();

Expand Down Expand Up @@ -626,7 +626,7 @@ mod tests {
let _ = env_logger::try_init();

let (wasm_binary, _) = load_wasm_module::<Runtime>(
"../../pop-api/examples/read-runtime-state/target/ink/pop_api_read_relay_blocknumber.wasm",
"../../pop-api/examples/read-runtime-state/target/ink/read_relay_blocknumber.wasm",
)
.unwrap();

Expand Down Expand Up @@ -685,7 +685,7 @@ mod tests {
let _ = env_logger::try_init();

let (wasm_binary, _) = load_wasm_module::<Runtime>(
"../../pop-api/examples/place-spot-order/target/ink/pop_api_spot_order.wasm",
"../../pop-api/examples/place-spot-order/target/ink/spot_order.wasm",
)
.unwrap();

Expand Down
10 changes: 5 additions & 5 deletions runtime/testnet/src/extensions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ mod tests {
let _ = env_logger::try_init();

let (wasm_binary, _) = load_wasm_module::<Runtime>(
"../../pop-api/examples/balance-transfer/target/ink/pop_api_extension_demo.wasm",
"../../pop-api/examples/balance-transfer/target/ink/balances.wasm",
)
.unwrap();

Expand Down Expand Up @@ -416,7 +416,7 @@ mod tests {
let _ = env_logger::try_init();

let (wasm_binary, _) = load_wasm_module::<Runtime>(
"../../pop-api/examples/nfts/target/ink/pop_api_nft_example.wasm",
"../../pop-api/examples/nfts/target/ink/nfts.wasm",
)
.unwrap();

Expand Down Expand Up @@ -496,7 +496,7 @@ mod tests {
let _ = env_logger::try_init();

let (wasm_binary, _) = load_wasm_module::<Runtime>(
"../../pop-api/examples/nfts/target/ink/pop_api_nft_example.wasm",
"../../pop-api/examples/nfts/target/ink/nfts.wasm",
)
.unwrap();

Expand Down Expand Up @@ -561,7 +561,7 @@ mod tests {
let _ = env_logger::try_init();

let (wasm_binary, _) = load_wasm_module::<Runtime>(
"../../pop-api/examples/read-runtime-state/target/ink/pop_api_extension_demo.wasm",
"../../pop-api/examples/read-runtime-state/target/ink/read_relay_blocknumber.wasm",
)
.unwrap();

Expand Down Expand Up @@ -620,7 +620,7 @@ mod tests {
let _ = env_logger::try_init();

let (wasm_binary, _) = load_wasm_module::<Runtime>(
"../../pop-api/examples/place-spot-order/target/ink/pop_api_spot_order_example.wasm",
"../../pop-api/examples/place-spot-order/target/ink/spot_order.wasm",
)
.unwrap();

Expand Down

0 comments on commit f77f2bb

Please sign in to comment.