File tree 2 files changed +4
-2
lines changed
basics/hello-solana/native
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 3
3
"test" : " pnpm ts-mocha -p ./tsconfig.json -t 1000000 ./tests/test.ts" ,
4
4
"build-and-test" : " cargo build-sbf --manifest-path=./program/Cargo.toml --sbf-out-dir=./tests/fixtures && pnpm test" ,
5
5
"build" : " cargo build-sbf --manifest-path=./program/Cargo.toml --sbf-out-dir=./program/target/so" ,
6
- "deploy" : " solana program deploy ./program/target/so/program .so"
6
+ "deploy" : " solana program deploy ./program/target/so/hello_solana_program .so"
7
7
},
8
8
"dependencies" : {
9
9
"@solana/web3.js" : " ^1.47.3"
Original file line number Diff line number Diff line change
1
+ asdfasdg
1
2
import {
2
3
PublicKey ,
3
4
Transaction ,
@@ -27,6 +28,7 @@ describe('hello-solana', async () => {
27
28
tx . add ( ix ) . sign ( payer ) ;
28
29
29
30
// Now we process the transaction
30
- await client . processTransaction ( tx ) ;
31
+ let transaction = await client . processTransaction ( tx ) ;
32
+ console . log ( transaction ?. meta ?. logMessages ) ;
31
33
} ) ;
32
34
} ) ;
You can’t perform that action at this time.
0 commit comments