Serial.begin and current draw

Serial.begin() should activate the internal UART and do - among other stuff - the equivalent of

pinMode(1, OUTPUT);
digitalWrite(1, HIGH); // idle , 0 = start bit

What do you have connected there ?
How much current does this code alone invoke ?
Are you sure it sleeps, if something is connected to the Rx pin, sending data ?