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

Commit 8e6de14

Browse files
committed
Fix decimals value
1 parent 6820ad7 commit 8e6de14

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

program/tests/approve_checked.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ async fn approve_checked(token_program: Pubkey) {
6363
&owner.pubkey(),
6464
&[],
6565
50,
66-
0,
66+
4,
6767
)
6868
.unwrap();
6969
approve_ix.program_id = token_program;

program/tests/burn_checked.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ async fn burn_checked(token_program: Pubkey) {
6060
&owner.pubkey(),
6161
&[],
6262
50,
63-
0,
63+
4,
6464
)
6565
.unwrap();
6666
burn_ix.program_id = token_program;

program/tests/mint_to_checked.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ async fn mint_to_checked(token_program: Pubkey) {
4949
&mint_authority.pubkey(),
5050
&[],
5151
100,
52-
0,
52+
4,
5353
)
5454
.unwrap();
5555
// Switches the program id to the token program.

program/tests/transfer_checked.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ async fn transfer_checked(token_program: Pubkey) {
6666
&owner.pubkey(),
6767
&[],
6868
100,
69-
0,
69+
4,
7070
)
7171
.unwrap();
7272
transfer_ix.program_id = token_program;

0 commit comments

Comments
 (0)