-
Notifications
You must be signed in to change notification settings - Fork 1
chore: upgrade wallet-lib to v1.14.1 #216
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
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
acfe81d
chore: upgrade wallet-lib to v1.14.1
r4mmer c76801f
chore: upgrade daemon
r4mmer e988c22
chore: remove deprecated getAddresses for deriveAddressFromXPubP2PKH
r4mmer 8b9974a
chore: upgrade constants used in the wallet-service files
r4mmer aa29132
chore: update nft utils tests
r4mmer 80e40be
chore: update tests to use most recent utils and constants
r4mmer 380cdf1
chore: ignore type issues with the mocked apis
r4mmer 9a3bb63
chore: skip failing test due to DEC-0001
r4mmer 3142f9a
Feat/node config module (#217)
r4mmer 0cb94ac
chore: review changes
r4mmer fa74f27
chore: lock dev dependency version
r4mmer 18568ae
chore: review changes
r4mmer 202de27
Merge remote-tracking branch 'origin/master' into feat/upgrade-wallet…
r4mmer e19170a
chore: adapt changes after master update
r4mmer 2477efa
chore: do not directly alter constants
r4mmer 4e8d9bf
chore: fix test typing for mocked data
r4mmer 4492ec3
chore: fix typo
r4mmer dfd52bb
tests: make value always the expected on the config test
r4mmer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,33 @@ | ||
| 'use strict'; | ||
|
|
||
| /** @type {import('sequelize-cli').Migration} */ | ||
| module.exports = { | ||
| async up (queryInterface, Sequelize) { | ||
| // Dropping the table and recreating it is easier than deleting the fields then adding the new | ||
| // one, there is also no danger of losing any data since this is fetched from the fullnode | ||
| await queryInterface.dropTable('version_data'); | ||
| await queryInterface.createTable('version_data', { | ||
| id: { | ||
| type: Sequelize.INTEGER.UNSIGNED, | ||
| allowNull: false, | ||
| primaryKey: true, | ||
| defaultValue: 1, | ||
| }, | ||
| timestamp: { | ||
| type: Sequelize.BIGINT.UNSIGNED, | ||
| allowNull: false, | ||
| }, | ||
| data: { | ||
| type: Sequelize.TEXT, | ||
| allowNull: false, | ||
| }, | ||
| }); | ||
| }, | ||
|
|
||
| async down (queryInterface, Sequelize) { | ||
| await queryInterface.dropTable('version_data'); | ||
| // The "old" table structure was copied from ./20210706175820-create-version-data.js | ||
| const { up } = require('./20210706175820-create-version-data'); | ||
| await up(queryInterface, Sequelize); | ||
| } | ||
| }; | ||
This file contains hidden or 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 hidden or 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.
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.
Uh oh!
There was an error while loading. Please reload this page.