Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cmd: add missing signer to eth client config #1954

Merged
merged 1 commit into from
Jul 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- \#1930 Support custom minimum gas price (@yondonfu)
- \#1942 Log min and max gas price when monitoring is enabled (@kyriediculous)
- \#1923 Use a transaction manager with better transaction handling and optional replacement transactions instead of the default JSON-RPC client (@kyriediculous)
- \#1954 Add signer to Ethereum client config (@kyriediculous)

#### Broadcaster

Expand Down
1 change: 1 addition & 0 deletions cmd/devtool/devtool.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ func ethSetup(ethAcctAddr, keystoreDir string, isBroadcaster bool) {
EthClient: backend,
GasPriceMonitor: gpm,
TransactionManager: tm,
Signer: signer,
}

client, err := eth.NewClient(ethCfg)
Expand Down
1 change: 1 addition & 0 deletions cmd/livepeer/livepeer.go
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,7 @@ func main() {
EthClient: backend,
GasPriceMonitor: gpm,
TransactionManager: tm,
Signer: signer,
}

client, err := eth.NewClient(ethCfg)
Expand Down