Skip to content

Commit

Permalink
Revert "fix metadata program id (#3370)"
Browse files Browse the repository at this point in the history
This reverts commit 3cb0f8b.
  • Loading branch information
gnapoli23 committed Feb 1, 2023
1 parent 3cb0f8b commit a45222a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions stake-pool/py/stake_pool/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
MAX_VALIDATORS_TO_UPDATE, \
MINIMUM_RESERVE_LAMPORTS, \
STAKE_POOL_PROGRAM_ID, \
METADATA_PROGRAM_ID, \
find_stake_program_address, \
find_transient_stake_program_address, \
find_withdraw_authority_program_address
Expand Down Expand Up @@ -612,7 +611,7 @@ async def create_token_metadata(client: AsyncClient, payer: Keypair, stake_pool_
symbol=symbol,
uri=uri,
withdraw_authority=withdraw_authority,
token_metadata=METADATA_PROGRAM_ID,
token_metadata=TOKEN_PROGRAM_ID,
)
)

Expand All @@ -638,7 +637,7 @@ async def update_token_metadata(client: AsyncClient, payer: Keypair, stake_pool_
symbol=symbol,
uri=uri,
withdraw_authority=withdraw_authority,
token_metadata=METADATA_PROGRAM_ID,
token_metadata=TOKEN_PROGRAM_ID,
)
)

Expand Down

0 comments on commit a45222a

Please sign in to comment.