Skip to content

Commit

Permalink
Merge pull request #1250 from ethereum-optimism/develop
Browse files Browse the repository at this point in the history
Develop -> Master
  • Loading branch information
tynes authored Jul 9, 2021
2 parents a54e19f + 90149ac commit fdc3059
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 19 deletions.
5 changes: 0 additions & 5 deletions .changeset/forty-pigs-study.md

This file was deleted.

5 changes: 5 additions & 0 deletions .changeset/plenty-walls-compare.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@eth-optimism/contracts': patch
---

Run lint over the tasks directory
5 changes: 0 additions & 5 deletions .changeset/slimy-experts-travel.md

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
context: .
file: ./ops/docker/Dockerfile.gas-oracle
push: true
tags: ethereumoptimism/gas-oracle:${{ needs.release.outputs.gas-oracle }}
tags: ethereumoptimism/gas-oracle:${{ needs.release.outputs.gas-oracle }},ethereumoptimism/gas-oracle:latest

# pushes the base builder image to dockerhub
builder:
Expand Down
7 changes: 7 additions & 0 deletions l2geth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.4.4

### Patch Changes

- 0404c964: Allow zero gas price transactions from the `OVM_GasPriceOracle.owner` when enforce fees is set to true. This is to prevent the need to manage an additional hot wallet as well as prevent any situation where a bug causes the fees to go too high that it is not possible to lower the fee by sending a transaction
- c612a903: Add sequencer fee buffer with config options `ROLLUP_FEE_THRESHOLD_UP` and `ROLLUP_FEE_THRESHOLD_DOWN` that are interpreted as floating point numbers

## 0.4.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion l2geth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eth-optimism/l2geth",
"version": "0.4.3",
"version": "0.4.4",
"private": true,
"devDependencies": {}
}
10 changes: 9 additions & 1 deletion ops/scripts/ci-versions.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,18 @@ const os = require('os')
data = process.argv[2]
data = JSON.parse(data)

// Packages that do not depend on the builder.
// There are more packages that depend on the
// builder than not, so keep track of this list instead
const nonBuilders = new Set([
'l2geth',
'gas-oracle',
])

builder = false
for (const i of data) {
const name = i.name.replace("@eth-optimism/", "")
if (name !== 'l2geth') {
if (!nonBuilders.has(name)) {
builder = true
}
const version = i.version
Expand Down
7 changes: 1 addition & 6 deletions packages/contracts/tasks/l2-gasprice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,7 @@ import { getContractDefinition } from '../src/contract-defs'

task('set-l2-gasprice')
.addOptionalParam('l2GasPrice', 'Gas Price to set on L2', 0, types.int)
.addOptionalParam(
'transactionGasPrice',
'tx.gasPrice',
undefined,
types.int
)
.addOptionalParam('transactionGasPrice', 'tx.gasPrice', undefined, types.int)
.addOptionalParam(
'contractsRpcUrl',
'Sequencer HTTP Endpoint',
Expand Down

0 comments on commit fdc3059

Please sign in to comment.