We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We should add mpe_address to the message in GetChannelState authentication.
So the client should sign the following message: __get_channel_state , mpe_address, Channel ID, Current block
In state_service.go in GetChannelState function we should compose the message as following:
message := bytes.Join([][]byte{ []byte("__get_channel_state"), service.serviceMetaData.GetMpeAddress().Bytes(), bigIntToBytes(channelID), abi.U256(big.NewInt(int64(request.CurrentBlock))), }, nil)
The text was updated successfully, but these errors were encountered:
singnet#287
14bcafc
Add mpe_address to GetChannelState authentication
#added mpe_address to validation
d9cf7f5
Merge pull request #291 from anandrgitnirman/testcasefailure
c1071b4
#287, Add mpe_address to GetChannelState authentication
No branches or pull requests
We should add mpe_address to the message in GetChannelState authentication.
So the client should sign the following message: __get_channel_state , mpe_address, Channel ID, Current block
In state_service.go in GetChannelState function we should compose the message as following:
The text was updated successfully, but these errors were encountered: