-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move VSP client code to wallet package.
This moves the VSP client code from its own package into the wallet package. Moving this code should have minimal impact on consumers of the vsp package because they will have been importing the wallet package already due to the fact that a VSP client could not be created without an instance of wallet. The benefits of this are: - vsp client creation now exists only in the wallet package, rather than being scattered across 3 packages. - vsp client loading funcs and variables are no longer package global. - simplifies the creation of a vsp client because the wallet no longer needs to be passed into the func as a param. - no longer necessary to abstract the vsp client away by referring to its methods, the client can just be used directly.
- Loading branch information
1 parent
17dd448
commit d7f30a9
Showing
9 changed files
with
123 additions
and
185 deletions.
There are no files selected for viewing
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
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
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
Oops, something went wrong.