-
Notifications
You must be signed in to change notification settings - Fork 173
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
gomod, eth: fix nonce gap issues #1125
Conversation
9f3aaa1
to
fc6c9fb
Compare
Updated the PR to include a wrapper This PR is unlikely however to address nonce gap issues occuring in releases that already included the custom nonce manager. |
fixed in 4eea557
…On Fri, Oct 25, 2019 at 9:31 PM Yondon Fu ***@***.***> wrote:
***@***.**** requested changes on this pull request.
------------------------------
In cmd/livepeer_cli/livepeer_cli.go
<#1125 (comment)>:
> @@ -166,11 +166,11 @@ func (w *wizard) doCLIOpt(choice string, options []wizardOpt) {
log.Error("That's not something I can do")
}
-var RinkebyNetworkId = "4"
-var DevenvNetworkId = "54321"
+var RinkebychainID = "4"
Capitalize the "C" in chainID? Think that would be easier to read i.e.
RinkebyChainID and DevenvChainID
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1125?email_source=notifications&email_token=AFJZZWVZ5ZWZZV2BRCMOKLTQQNCSJA5CNFSM4JCN7JRKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCJJLGBY#pullrequestreview-307409671>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AFJZZWRJJHZHYQYBVNN5QJLQQNCSJANCNFSM4JCN7JRA>
.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes look good! Let's rebase
4eea557
to
4f2e591
Compare
rebased ! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
What does this pull request do? Explain your changes. (required)
This PR upgrades the version of go-ethereum to include ethereum/go-ethereum#15794 in order to try to mitigate nonce issues that are occuring in the 0.3.3 go-livepeer release
Specific updates (required)
go-ethereum@1.9.3
instead of our ownv.1.8.x
fork to include internal/ethapi: ask transaction pool for pending nonce ethereum/go-ethereum#15794NonceManager
implementation & usageeth/watchers/eventdecoder
to match the API updates for the newgo-ethereum
versiongo mod tidy
How did you test each of these updates (required)
Ran unit tests
Does this pull request close any open issues?
Fixes #1104
Checklist:
./test.sh
pass