Skip to content

docs: fixes and improvements in CHANGELOG.md and pyth_admin.cpp #428

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Break out admin-only request/rpc classes into separate files.
- [pyth_admin] Separate out admin commands into new binary.
- [pyth] Consolidate CLI argument parsing.
- [pyth] Remove get_pub_key command and update docs/scripts - these should by run using the solana CLI tool.
- [pyth] Remove transfer and get_balance command line commands - these should by run using the solana CLI tool.
- [pyth] Remove get_pub_key command and update docs/scripts - these should be run using the solana CLI tool.
- [pyth] Remove transfer and get_balance command line commands - these should be run using the solana CLI tool.
- [pyth] add Host header to RPC requests
- [pyth] add account filtering to get_program_accounts
- [pyth] add option to disable ws connection to RPC node
Expand Down
6 changes: 3 additions & 3 deletions pcapps/pyth_admin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ int on_init_mapping( int argc, char **argv )
if ( args.invalid_ )
return 1;

std::cerr << "this might take take up to 30 seconds..." << std::endl;
std::cerr << "this might take up to 30 seconds..." << std::endl;

// initialize connection to block-chain
manager mgr;
Expand Down Expand Up @@ -192,7 +192,7 @@ int on_add_product( int argc, char **argv )
if ( args.invalid_ )
return 1;

std::cerr << "this might take take up to 30 seconds..." << std::endl;
std::cerr << "this might take up to 30 seconds..." << std::endl;

// initialize connection to block-chain
manager mgr;
Expand Down Expand Up @@ -375,7 +375,7 @@ int on_add_price( int argc, char **argv )
return 1;
}
}
std::cerr << "this might take take up to 30 seconds..." << std::endl;
std::cerr << "this might take up to 30 seconds..." << std::endl;

// get rent-exemption amount for symbol account
get_minimum_balance_rent_exemption req_r[1];
Expand Down