-
Notifications
You must be signed in to change notification settings - Fork 37
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
Remove old wallet package from dev-dependencies #364
Conversation
src/testutils/wallets.ts
Outdated
@@ -73,7 +72,7 @@ export class TestWallet { | |||
readonly secretKeyHex: string; | |||
readonly secretKey: Buffer; | |||
readonly signer: UserSigner; | |||
readonly signerNext: UserSignerNext; | |||
readonly signerNext: UserSigner; |
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.
I think can be dropped now.
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.
Removed signerNext
src/testutils/wallets.ts
Outdated
@@ -83,7 +82,7 @@ export class TestWallet { | |||
this.secretKeyHex = secretKeyHex; | |||
this.secretKey = Buffer.from(secretKeyHex, "hex"); | |||
this.signer = new UserSigner(UserSecretKey.fromString(secretKeyHex)); | |||
this.signerNext = new UserSignerNext(UserSecretKey.fromString(secretKeyHex)); | |||
this.signerNext = new UserSigner(UserSecretKey.fromString(secretKeyHex)); |
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.
Now, a duplicate of the above.
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.
removed
Removed old wallet package (v3.0.0) and replaced
sdk-wallet-next(v4.0.0)
tosdk-wallet(v4.2.0)
.