From 38f622a3373ef846485441d0c6bba3373b67bb6e Mon Sep 17 00:00:00 2001 From: syuan100 Date: Sat, 24 Jul 2021 00:18:27 -0700 Subject: [PATCH] remove nil ref --- helium/op_processor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helium/op_processor.go b/helium/op_processor.go index 7242eeb..886da91 100644 --- a/helium/op_processor.go +++ b/helium/op_processor.go @@ -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"]),