Skip to content

Commit

Permalink
remove nil ref
Browse files Browse the repository at this point in the history
  • Loading branch information
syuan100 committed Jul 24, 2021
1 parent c4c04f2 commit 38f622a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helium/op_processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func TransactionToOps(txn map[string]interface{}) ([]*types.Operation, *types.Er
)

case TokenBurnV1Txn:
feeDetails := GetFee(&hash, utils.MapToInt64(txn["fee"])+utils.MapToInt64(txn["staking_fee"]))
feeDetails := GetFee(&hash, utils.MapToInt64(txn["fee"]))
return TokenBurnV1(
fmt.Sprint(txn["payer"]),
utils.MapToInt64(txn["amount"]),
Expand Down

0 comments on commit 38f622a

Please sign in to comment.