From 182ff875d3cec2865d163da526feb48f72f117ec Mon Sep 17 00:00:00 2001 From: mgild Date: Fri, 3 Jun 2022 14:26:45 -0400 Subject: [PATCH] add force_mainnet flag to arithetic operations --- libraries/protos/job_schemas.proto | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/protos/job_schemas.proto b/libraries/protos/job_schemas.proto index b70a8e4..485860e 100644 --- a/libraries/protos/job_schemas.proto +++ b/libraries/protos/job_schemas.proto @@ -128,7 +128,7 @@ message OracleJob { // A job whose result is computed before dividing our numerical input by that result. OracleJob job = 3; } - optional bool force_mainnet = 3; + optional bool force_mainnet = 4; } // This task will multiply a numerical input by a scalar value or by another @@ -142,7 +142,7 @@ message OracleJob { // A job whose result is computed before multiplying our numerical input by that result. OracleJob job = 3; } - optional bool force_mainnet = 3; + optional bool force_mainnet = 4; } // This task will add a numerical input by a scalar value or by another @@ -156,7 +156,7 @@ message OracleJob { // A job whose result is computed before adding our numerical input by that result. OracleJob job = 3; } - optional bool force_mainnet = 3; + optional bool force_mainnet = 4; } // This task will subtract a numerical input by a scalar value or by another @@ -170,7 +170,7 @@ message OracleJob { // A job whose result is computed before subtracting our numerical input by that result. OracleJob job = 3; } - optional bool force_mainnet = 3; + optional bool force_mainnet = 4; } // Fetch LP token price info from a number of supported exchanges.