Skip to content

Commit

Permalink
[fix] Add L1 fee to transaction fee for receipts (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
tobidae-cb authored Apr 16, 2024
1 parent 86bfed2 commit 565925e
Show file tree
Hide file tree
Showing 6 changed files with 150 additions and 104 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ run-optimism-goerli:
##################################################################################

build:
go build -v -o rosetta-ethereum ./cmd/...
go build -v -o optimism-rosetta ./cmd/...

build-docker:
docker build -t rosetta-ethereum:latest https://github.com/inphi/optimism-rosetta.git
Expand Down
14 changes: 8 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,11 @@ require (
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
github.com/wsddn/go-ecdh v0.0.0-20161211032359-48726bab9208 // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/term v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
golang.org/x/mod v0.17.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/term v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/tools v0.20.0 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect
gopkg.in/olebedev/go-duktape.v3 v3.0.0-20200619000410-60c24ae608a6 // indirect
Expand All @@ -94,9 +96,9 @@ require (
github.com/rs/cors v1.8.2 // indirect
github.com/spf13/cobra v1.2.1
github.com/stretchr/testify v1.8.1
golang.org/x/crypto v0.0.0-20220307211146-efcb8507fb70 // indirect
golang.org/x/net v0.6.0 // indirect
golang.org/x/sync v0.1.0
golang.org/x/crypto v0.22.0 // indirect
golang.org/x/net v0.24.0 // indirect
golang.org/x/sync v0.7.0
)

replace github.com/ethereum/go-ethereum v1.11.6 => github.com/ethereum-optimism/op-geth v1.101106.0-rc.2
Expand Down
Loading

0 comments on commit 565925e

Please sign in to comment.