-
Notifications
You must be signed in to change notification settings - Fork 588
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
settxfee races #379
Comments
jrick
added a commit
to jrick/btcwallet
that referenced
this issue
Mar 9, 2016
This prevents races when setting a new relay fee through the legacy RPC server (settxfee). Fixes btcsuite#379.
jrick
added a commit
to jrick/btcwallet
that referenced
this issue
Mar 9, 2016
This prevents races when setting a new relay fee through the legacy RPC server (settxfee). Fixes btcsuite#379.
jrick
added a commit
to jrick/btcwallet
that referenced
this issue
Nov 10, 2016
While here, improve the error returned by RPCClient.Connect to include both the required and advertised API versions. These versions are independent of the program and/or project's release versions, but it should still be useful in determining whether dcrd must be downgraded or upgraded for compatibility with this wallet software. Add a 30 second sleep after any connection or compatibility errors (where compatibility errors are not just incorrect API versions, but mismatched currency networks as well). This prevents an immediate reconnect to the server. Fixes btcsuite#379.
jrick
added a commit
to jrick/btcwallet
that referenced
this issue
Nov 10, 2016
While here, improve the error returned by RPCClient.Connect to include both the required and advertised API versions. These versions are independent of the program and/or project's release versions, but it should still be useful in determining whether dcrd must be downgraded or upgraded for compatibility with this wallet software. Add a 30 second sleep after any connection or compatibility errors (where compatibility errors are not just incorrect API versions, but mismatched currency networks as well). This prevents an immediate reconnect to the server. Fixes btcsuite#379.
jrick
added a commit
to jrick/btcwallet
that referenced
this issue
Nov 10, 2016
While here, improve the error returned by RPCClient.Connect to include both the required and advertised API versions. These versions are independent of the program and/or project's release versions, but it should still be useful in determining whether dcrd must be downgraded or upgraded for compatibility with this wallet software. Add a 30 second sleep after any connection or compatibility errors (where compatibility errors are not just incorrect API versions, but mismatched currency networks as well). This prevents an immediate reconnect to the server. Fixes btcsuite#379.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The legacy RPC server's settxfee RPC causes data races when modifying the wallet's relay fee. Synchronization is needed.
The text was updated successfully, but these errors were encountered: