-
Notifications
You must be signed in to change notification settings - Fork 0
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
Persistence Integration #6
Open
NhoxxKienn
wants to merge
40
commits into
dev
Choose a base branch
from
persistence-cs
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
… serviced by a single channel service
Added feature and wire discovery
added readme.md
…olver, Libp2p Wire Signed-off-by: Minh Huy Tran <huy@perun.network>
…e into nervos_demo
…hore(.gitignore): update .gitignore
…es and scripts *WIP(setup.go, test_utilities.go): first test case *chore: update go-perun dependency
Signed-off-by: Minh Huy Tran <huy@perun.network>
Signed-off-by: Minh Huy Tran <huy@perun.network>
Signed-off-by: Minh Huy Tran <huy@perun.network>
Signed-off-by: Minh Huy Tran <huy@perun.network>
Signed-off-by: Minh Huy Tran <huy@perun.network>
Signed-off-by: Minh Huy Tran <huy@perun.network>
Signed-off-by: Minh Huy Tran <huy@perun.network>
Signed-off-by: Minh Huy Tran <huy@perun.network>
Signed-off-by: Minh Huy Tran <huy@perun.network>
Signed-off-by: Minh Huy Tran <huy@perun.network>
Signed-off-by: Minh Huy Tran <huy@perun.network>
…rom user & WIP: updateChannel feat addRestoreChannels - add RestoreChannels, ClosePerunClient and NewPerunClient to perun-wallet.proto and channel-service - add proto message types for RestoreChannels, ClosePerunClient and NewPerunClient - add setup methods in test_utils.go for message types - test restoring channels in channel_service_test.go fix: rever wrapper - remove util/wrapper.go - revert changes in wallet/signer.go fix: remove mutex from user - remove mutex completely from user.go WIP: updateChannel - commented out code in channel_service_test.go - setup methods of messages of UpdateChannel in test_utils.go
Signed-off-by: Minh Huy Tran <huy@perun.network>
Signed-off-by: Minh Huy Tran <huy@perun.network>
Signed-off-by: Minh Huy Tran <huy@perun.network>
feat: add updateChannel - add factory methods for update protobuf messages - update test case to include updateChannel fix (user.go): restoreChannel - call handler for new perunClient in user.go chore: cleanup - remove channel codee - remove main.go - beautify and remove unnecessary comments
- add request and response message types for ClosePerunClient - add byte array field to all message types for RestoreChannels, ClosePerunClient and NewPerunClient - generated code from .proto file
Signed-off-by: Minh Huy Tran <huy@perun.network>
Signed-off-by: Minh Huy Tran <huy@perun.network>
Signed-off-by: Minh Huy Tran <huy@perun.network>
Signed-off-by: Minh Huy Tran <huy@perun.network>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR introduces new features into channel-services.
Breaking changes:
Remove "central-hub" behavior of channel-service. Now every client should have its own channel-service and one channel-service serves only a single client.
Remove
main.go
, developers should deploy the channel service instance on a server.Adds:
Minor: