Skip to content

Commit

Permalink
Fix error in Blocks().
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdee committed Jun 20, 2023
1 parent 72a7219 commit 9212b0d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
0.7.6:
- Fix error in the Blocks() provider

0.7.5:
- Add provider for epoch summaries
- Add withdrawals to epoch summaries table
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ import (
)

// ReleaseVersion is the release version for the code.
var ReleaseVersion = "0.7.5"
var ReleaseVersion = "0.7.6"

func main() {
os.Exit(main2())
Expand Down
2 changes: 1 addition & 1 deletion services/chaindb/postgresql/executionpayload.go
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ WHERE f_block_root = ANY($1)`,
&baseFeePerGas,
&payload.Timestamp,
&payload.ExtraData,
&payload.ExcessDataGas,
&excessDataGas,
)
if err != nil {
return nil, errors.Wrap(err, "failed to scan row")
Expand Down

0 comments on commit 9212b0d

Please sign in to comment.