Wordpress Theme, Changing Avatar Size

My goal is to keep my current comment formatting and increase the size of the posters avatar.

Currently my theme uses this line to display the comment and poster info, including avatar size:

<?php wp_list_comments('type=comment&callback=arras_list_comments'); ?>

When I switch it with this line the avatar does change size (to 100 by 100 pixels) but my other formatting is lost:

<?php wp_list_comments(array('avatar_size' => '100', 'type' => 'comment')); ?>

Which line can I call that uses both the formatting of the first line and changes the avatar size to 100?

-j33k