782 | - assert_fee_amount(result3['fee'], count_bytes(result3['hex']), 10 * result_fee_rate)
783 | - assert_fee_amount(result4['fee'], count_bytes(result4['hex']), 10 * result_fee_rate)
784 | + assert_feerate_amount(result1['fee'], count_bytes(result1['hex']), 2 * result_fee_rate)
785 | + assert_feerate_amount(result2['fee'], count_bytes(result2['hex']), 2 * result_fee_rate)
786 | + assert_feerate_amount(result3['fee'], count_bytes(result3['hex']), 10 * result_fee_rate)
787 | + assert_feerate_amount(result4['fee'], count_bytes(result4['hex']), 10 * result_fee_rate)
the first arg is fee (absolute fee), not a feerate
oops. thanks, fixed, change is much smaller now