Skip to content

Commit

Permalink
chore: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
egasimus committed Jun 26, 2024
1 parent 4310bef commit fd0a3ea
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/namada/NamadaPoS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ export async function fetchValidatorDetails (
() => connection.abciQuery(`/vp/pos/validator/consensus_key/${v}`)
.then(binary => {
const publicKey = base16.encode(binary.slice(2))
console.log({validator, publicKey})
if (validator.publicKey && (validator.publicKey !== publicKey)) {
throw Object.assign(new Error(`Fetched different public key for ${v}`), {
oldPublicKey: validator.publicKey,
Expand All @@ -206,7 +205,6 @@ export async function fetchValidatorDetails (
connection.log.debug(prefix, `in sequence`)
}
await optionallyParallel(options?.parallel, requests)
console.log({validator})
return validator
}

Expand Down

0 comments on commit fd0a3ea

Please sign in to comment.