remove logs of wrapped command

This commit is contained in:
Andrea Franz 2018-10-03 18:12:24 +02:00
parent 4821bea2a5
commit e80f686c96
No known key found for this signature in database
GPG Key ID: 4F0D2F2D9DE7F29D
1 changed files with 0 additions and 7 deletions

View File

@ -34,12 +34,5 @@ func (c *SecureChannel) Send(cmd *apdu.Command) (*apdu.Response, error) {
return nil, err
}
rawWrappedCmd, err := wrappedCmd.Serialize()
if err != nil {
return nil, err
}
fmt.Printf("WRAPPED %s\n", hexutils.BytesToHexWithSpaces(rawWrappedCmd))
return c.c.Send(wrappedCmd)
}