Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
Replace self.pubkey -> self.get_address()
Browse files Browse the repository at this point in the history
  • Loading branch information
joncinque committed Jan 18, 2024
1 parent 52a691e commit 9da68d5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions token/client/src/token.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2152,7 +2152,7 @@ where
let mut instructions = confidential_transfer::instruction::transfer(
&self.program_id,
source_account,
&self.pubkey,
self.get_address(),
destination_account,
new_decryptable_available_balance,
source_authority,
Expand Down Expand Up @@ -2210,7 +2210,7 @@ where
let mut instruction = confidential_transfer::instruction::transfer_with_split_proofs(
&self.program_id,
source_account,
&self.pubkey,
self.get_address(),
destination_account,
new_decryptable_available_balance.into(),
source_authority,
Expand Down Expand Up @@ -2287,7 +2287,7 @@ where
confidential_transfer::instruction::transfer_with_split_proofs(
&self.program_id,
source_account,
&self.pubkey,
self.get_address(),
destination_account,
new_decryptable_available_balance.into(),
source_authority,
Expand Down Expand Up @@ -2727,7 +2727,7 @@ where
&self.program_id,
source_account,
destination_account,
&self.pubkey,
self.get_address(),
new_decryptable_available_balance,
source_authority,
&multisig_signers,
Expand Down Expand Up @@ -2790,7 +2790,7 @@ where
confidential_transfer::instruction::transfer_with_fee_and_split_proofs(
&self.program_id,
source_account,
&self.pubkey,
self.get_address(),
destination_account,
new_decryptable_available_balance.into(),
source_authority,
Expand Down Expand Up @@ -2892,7 +2892,7 @@ where
confidential_transfer::instruction::transfer_with_fee_and_split_proofs(
&self.program_id,
source_account,
&self.pubkey,
self.get_address(),
destination_account,
new_decryptable_available_balance.into(),
source_authority,
Expand Down

0 comments on commit 9da68d5

Please sign in to comment.