Remove stray dbg

This commit is contained in:
Michael Vines
2020-12-24 10:43:57 -08:00
parent bf4c169703
commit 8926736e1c

View File

@ -143,7 +143,7 @@ fn main() {
};
let mint_address = pubkey_of(&matches, "mint_address").unwrap_or_else(|| {
read_keypair_file(dbg!(&cli_config.keypair_path))
read_keypair_file(&cli_config.keypair_path)
.unwrap_or_else(|_| Keypair::new())
.pubkey()
});