Skip to content

Commit ccd938e

Browse files
committed
fix syntax issue in steel hello world example
1 parent 10c112b commit ccd938e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

basics/hello-solana/steel/program/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ crate-type = ["cdylib", "lib"]
1010
steel-api.workspace = true
1111
solana-program.workspace = true
1212
steel.workspace = true
13-
solana-sdk.workspace = true
1413

1514

1615
[dev-dependencies]

basics/hello-solana/steel/program/src/hello.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use solana_sdk::msg;
1+
use solana_program::msg;
22
use steel::*;
33

44
pub fn process_hello(accounts: &[AccountInfo<'_>], _data: &[u8]) -> ProgramResult {

0 commit comments

Comments
 (0)