Skip to content
This repository has been archived by the owner on Oct 29, 2022. It is now read-only.

Commit

Permalink
Fixes #32
Browse files Browse the repository at this point in the history
use the right method to set the tax costs
  • Loading branch information
alebianco committed Feb 14, 2014
1 parent a5833ed commit 783d7be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ private FREObject trackTransaction(FREContext context, Tracker tracker, FREObjec
if (shipping != null)
builder.setShippingCostInMicros((long) (shipping * 1000000));
if (tax != null)
builder.setShippingCostInMicros((long) (tax * 1000000));
builder.setTotalTaxInMicros((long) (tax * 1000000));

Transaction transaction = builder.build();

Expand Down

0 comments on commit 783d7be

Please sign in to comment.