-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding migration and updating model for managed_by_hardware_wallet
updating API to optionally take in private keys when importing VOAccount updating service implementation updating tests updating tests fixing lint issues fixing more lint issues fixing missing function wip implementation add test for db account import from hw lint fixes fetch main address from database making hw fog info optional lint fixes actually make the parameter optional... making sign with local signer public function making device mutable
- Loading branch information
1 parent
aab98e4
commit 6da80ac
Showing
15 changed files
with
589 additions
and
81 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
1 change: 1 addition & 0 deletions
1
full-service/migrations/2023-03-08-183917_account-managed-by-hardware-wallet-flag/down.sql
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER TABLE accounts DROP COLUMN managed_by_hardware_wallet; |
1 change: 1 addition & 0 deletions
1
full-service/migrations/2023-03-08-183917_account-managed-by-hardware-wallet-flag/up.sql
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER TABLE accounts ADD COLUMN managed_by_hardware_wallet BOOLEAN NOT NULL DEFAULT FALSE; |
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.