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