summaryrefslogtreecommitdiff
path: root/data/transactions/signedtxn.go
diff options
context:
space:
mode:
Diffstat (limited to 'data/transactions/signedtxn.go')
-rw-r--r--data/transactions/signedtxn.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/transactions/signedtxn.go b/data/transactions/signedtxn.go
index 6ade34a7e..bbe445f9f 100644
--- a/data/transactions/signedtxn.go
+++ b/data/transactions/signedtxn.go
@@ -133,7 +133,7 @@ func WrapSignedTxnsWithAD(txgroup []SignedTxn) []SignedTxnWithAD {
// FeeCredit computes the amount of fee credit that can be spent on
// inner txns because it was more than required.
-func FeeCredit(txgroup []SignedTxn, minFee uint64) (uint64, error) {
+func FeeCredit(txgroup []SignedTxnWithAD, minFee uint64) (uint64, error) {
minFeeCount := uint64(0)
feesPaid := uint64(0)
for _, stxn := range txgroup {