refactor(hermes): Change Pythnet mapping account env var (#1495)

Prefix the env var with Pythnet to be more clear.
This commit is contained in:
Ali Behjati 2024-04-23 12:41:50 +02:00 committed by GitHub
parent 64037e5b4a
commit d50488ef5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -22,6 +22,6 @@ pub struct Options {
/// Pyth mapping account address.
#[arg(long = "mapping-address")]
#[arg(default_value = DEFAULT_PYTHNET_MAPPING_ADDR)]
#[arg(env = "MAPPING_ADDRESS")]
#[arg(env = "PYTHNET_MAPPING_ADDRESS")]
pub mapping_addr: Pubkey,
}