Skip to content

Commit

Permalink
Update txsizes test
Browse files Browse the repository at this point in the history
  • Loading branch information
cpacia committed Jul 17, 2017
1 parent a3e184c commit 1f4d571
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion txsizes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func TestEstimateSerializeSize(t *testing.T) {
for _, l := range test.OutputScriptLengths {
outputs = append(outputs, &wire.TxOut{PkScript: make([]byte, l)})
}
actualEstimate := EstimateSerializeSize(test.InputCount, outputs, test.AddChangeOutput)
actualEstimate := EstimateSerializeSize(test.InputCount, outputs, test.AddChangeOutput, P2PKH)
if actualEstimate != test.ExpectedSizeEstimate {
t.Errorf("Test %d: Got %v: Expected %v", i, actualEstimate, test.ExpectedSizeEstimate)
}
Expand Down

0 comments on commit 1f4d571

Please sign in to comment.