-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
feat: add message support #515
Conversation
2c28cf0
to
11be9d8
Compare
@@ -21,7 +22,6 @@ CMD exec ./fuel-core run \ | |||
--ip ${IP} \ | |||
--port ${PORT} \ | |||
--db-path ${DB_PATH} \ | |||
--utxo-validation \ | |||
--min-gas-price ${MIN_GAS_PRICE} \ |
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.
removing --utxo-validation
: this is probably a no-go?
I need to figure out why this flag breaks the message id check on fuel-core
But all the tests pass here on GitHub with this flag disabled, so maybe we can keep it turned off
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 if it works without could be an issue once we have some predicate tests that would require this to be enabled. @Voxelot do you have some idea why this could be happening?
Coverage report
Show files with reduced coverage 🔻
Test suite run success520 tests passing in 46 suites. Report generated by 🧪jest coverage report action from 119955e |
packages/contract/src/__test__/coverage-contract/coverage-contract.test.ts
Outdated
Show resolved
Hide resolved
packages/contract/src/__test__/coverage-contract/coverage-contract.test.ts
Outdated
Show resolved
Hide resolved
@@ -21,7 +22,6 @@ CMD exec ./fuel-core run \ | |||
--ip ${IP} \ | |||
--port ${PORT} \ | |||
--db-path ${DB_PATH} \ | |||
--utxo-validation \ | |||
--min-gas-price ${MIN_GAS_PRICE} \ |
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 if it works without could be an issue once we have some predicate tests that would require this to be enabled. @Voxelot do you have some idea why this could be happening?
packages/contract/src/__test__/coverage-contract/coverage-contract.test.ts
Outdated
Show resolved
Hide resolved
Co-authored-by: Luiz Estácio | stacio.eth <luizstacio@gmail.com>
…ract.test.ts Co-authored-by: Luiz Estácio | stacio.eth <luizstacio@gmail.com>
@luizstacio This could be related to FuelLabs/fuel-tx#186 |
Closes #504 and
Closes #513 (just used newer Docker image to cover for this)