-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: deploy Nano Testnet (#168) * fix: fetchMinRewardBlocks fails when reward_min_blocks is 0 (#177) * fix: handle tx with no inputs and outputs (#178) * chore: added NODE_ENV to integration tests * fix: stop failing when there are no address balance on a transaction * tests: added tests for the voidTransaction method * chore: re-add test_images_down * feat: allow sending alerts to another account (#179) * fix: handle tx with no inputs (#181) * tests: added tests for the voidTransaction method * chore: re-add test_images_down * fix: markUtxosAsVoided should not throw when inputs are empty * fix: returning empty object on db utils and added test for services including db * tests: fix invalid order of calls * tests: missing tests [part 1/2] (#183) * tests: added missing tests * tests: added missing tests for nft push * chore: added docker-compose to flake * tests: ts-ignore -> ts-expect-error * feat: handling the vertex_removed event (#182) * feat: handling the vertex_removed event * fix: handling empty arrays on IN conditions * feat: handling VERTEX_REMOVED event * tests: fix last event * feat: voiding and removing transaction on vertex_removed event * tests: added tests for empty array errors * chore: using port 8085 * chore: actually using 8085 * refactor: removed misleading comment * ci: support sub-accounts (#184) * fix: non-standard scripts (#185) * fix: handling utxos with empty scripts being spent * refactor: helper to roll until an event * chore: using latest :stable on custom and empty script docker compose * refactor: removed unused logs * chore: using fixed dependencies for all projects (#186) * fix: updated balances and network name (#196) * fix: updated throttling lib causing deploy to fail (#195) * fix: updated firebase-admin lib version and deprecated sendMulticast (#194) * fix: updated firebase-admin lib version and deprecated sendMulticast * fix: tests mocking sendMulticast instead of the correct method * fix: slow address generation (#199) * chore: bumped to v1.6.3 (#200) --------- Co-authored-by: Luis Helder <[email protected]>
- Loading branch information
Showing
42 changed files
with
2,970 additions
and
1,731 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
18 changes: 18 additions & 0 deletions
18
db/migrations/20241203185227-add-address-wallet_id-index.js
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,18 @@ | ||
'use strict'; | ||
|
||
/** @type {import('sequelize-cli').Migration} */ | ||
module.exports = { | ||
async up(queryInterface) { | ||
await queryInterface.addIndex( | ||
'address', | ||
['wallet_id', 'index'], | ||
{ | ||
name: 'idx_wallet_address_index', | ||
} | ||
); | ||
}, | ||
|
||
async down(queryInterface) { | ||
await queryInterface.removeIndex('address', 'idx_wallet_address_index'); | ||
} | ||
}; |
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 |
---|---|---|
|
@@ -36,6 +36,7 @@ | |
nixpkgs-fmt | ||
nodejs_20 | ||
yarn | ||
docker-compose | ||
]; | ||
}; | ||
}); | ||
|
Oops, something went wrong.