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

Commit da05275

Browse files
temporarily disable fees for downstream ci (#3798)
1 parent 374f528 commit da05275

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

token/program-2022/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ no-entrypoint = []
1313
test-sbf = []
1414
serde-traits = ["serde", "serde_with"]
1515
# Remove these features once the underlying syscalls are released on all networks
16-
default = []
16+
default = ["zk-ops"]
1717
zk-ops = []
1818

1919
[dependencies]

token/program-2022/src/extension/confidential_transfer/processor.rs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -596,11 +596,12 @@ fn process_transfer(
596596
proof_data.ciphertext_hi.destination_handle,
597597
));
598598

599-
let fee_ciphertext = if token_account_info.key == destination_token_account_info.key {
600-
None
601-
} else {
602-
Some(proof_data.fee_ciphertext)
603-
};
599+
let fee_ciphertext = None;
600+
// let fee_ciphertext = if token_account_info.key == destination_token_account_info.key {
601+
// None
602+
// } else {
603+
// Some(proof_data.fee_ciphertext)
604+
// };
604605

605606
process_destination_for_transfer(
606607
destination_token_account_info,

0 commit comments

Comments
 (0)