diff --git a/flows/actions/testdata/transfer_airtime.json b/flows/actions/testdata/transfer_airtime.json index 46a215a04..9f8e63a77 100644 --- a/flows/actions/testdata/transfer_airtime.json +++ b/flows/actions/testdata/transfer_airtime.json @@ -31,7 +31,7 @@ "created_on": "2018-10-18T14:20:30.000123456Z", "step_uuid": "59d74b86-3e2f-4a93-aece-b05d2fdcde0c", "name": "Reward Transfer", - "value": "0", + "value": "", "category": "Failure" } ], @@ -327,7 +327,7 @@ "created_on": "2018-10-18T14:20:30.000123456Z", "step_uuid": "59d74b86-3e2f-4a93-aece-b05d2fdcde0c", "name": "Reward Transfer", - "value": "0", + "value": "", "category": "Failure" } ], diff --git a/flows/actions/transfer_airtime.go b/flows/actions/transfer_airtime.go index 4cc6318ae..b97eb1003 100644 --- a/flows/actions/transfer_airtime.go +++ b/flows/actions/transfer_airtime.go @@ -100,7 +100,7 @@ func (a *TransferAirtimeAction) saveSuccess(run flows.Run, step flows.Step, tran } func (a *TransferAirtimeAction) saveFailure(run flows.Run, step flows.Step, logEvent flows.EventCallback) { - a.saveResult(run, step, a.ResultName, "0", CategoryFailure, "", "", nil, logEvent) + a.saveResult(run, step, a.ResultName, "", CategoryFailure, "", "", nil, logEvent) } // Results enumerates any results generated by this flow object