Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
noot committed Dec 18, 2024
1 parent 098c29e commit fbc3116
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions grpc/execution/validation.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func validateAndConvertOracleDataTx(
txdata := types.InjectedTx{
From: cfg.oracleCallerAddress,
Value: new(big.Int),
Gas: 500000, // TODO
Gas: 100000, // TODO
To: &cfg.oracleContractAddress,
Data: calldata,
SourceTransactionId: primitivev1.TransactionId{},
Expand All @@ -127,7 +127,7 @@ func validateAndConvertOracleDataTx(
SourceTransactionId: primitivev1.TransactionId{}, // not relevant
SourceTransactionIndex: 0, // not relevant
}
log.Info("created updatePriceData tx", "pair", price.CurrencyPair, "price", price.price)
log.Info("created updatePriceData tx", "pairs", oracleData.Prices)
tx := types.NewTx(&txdata)
txs = append(txs, tx)
return txs, nil
Expand Down

0 comments on commit fbc3116

Please sign in to comment.