Remove stray dbg

This commit is contained in:
Michael Vines 2020-12-24 10:43:57 -08:00
parent d6d9053649
commit 87eb924d2a
1 changed files with 1 additions and 1 deletions

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()
});