You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently constants such as TEST_VM_RAND_ARRAY and TEST_FAUCET_ADDR are used as static consts in the TestVM's stack. These are also duplicated and used in the fil_actors_integration_tests crate to make assertions during test execution.
They should be deduplicated a possible solution is to reference GensisSpec usage #1345 (comment)
The text was updated successfully, but these errors were encountered:
This is part of a general need to inject/configure all externally-provided values into the VM. E.g. the circulating supply is a value provided to the VM by its host (Lotus). Follow a pattern like Primitives to bring all similar values under control of the test author.
Currently constants such as
TEST_VM_RAND_ARRAY
andTEST_FAUCET_ADDR
are used as static consts in the TestVM's stack. These are also duplicated and used in thefil_actors_integration_tests
crate to make assertions during test execution.They should be deduplicated a possible solution is to reference GensisSpec usage #1345 (comment)
The text was updated successfully, but these errors were encountered: