client: Added Debug derive macro (#1142)

This commit is contained in:
utx0 2021-12-16 05:20:04 +11:00 committed by GitHub
parent a3c8d20352
commit c0a0ce2857
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -69,6 +69,7 @@ impl Client {
}
// Internal configuration for a client.
#[derive(Debug)]
struct Config {
cluster: Cluster,
payer: Keypair,
@ -76,6 +77,7 @@ struct Config {
}
/// Program is the primary client handle to be used to build and send requests.
#[derive(Debug)]
pub struct Program {
program_id: Pubkey,
cfg: Config,