Skip to content

Commit ce579a5

Browse files
committed
Keeping existing comment
1 parent cd21255 commit ce579a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

programs/system/src/instructions/advance_nonce_account.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ impl AdvanceNonceAccount<'_> {
3737
AccountMeta::readonly_signer(self.authority.key()),
3838
];
3939

40-
// instruction data uses 4-byte LE discriminator expected by the system program
40+
// instruction
4141
let instruction = Instruction {
4242
program_id: &crate::ID,
4343
accounts: &account_metas,

programs/system/src/instructions/upgrade_nonce_account.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ impl UpgradeNonceAccount<'_> {
2121
// account metadata
2222
let account_metas: [AccountMeta; 1] = [AccountMeta::writable(self.account.key())];
2323

24-
// instruction data uses 4-byte LE discriminator expected by the system program
24+
// instruction
2525
let instruction = Instruction {
2626
program_id: &crate::ID,
2727
accounts: &account_metas,

0 commit comments

Comments
 (0)