Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion test/src/concrete/Flow.time.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ import {IInterpreterStoreV2} from "rain.interpreter.interface/interface/IInterpr
import {LibStackGeneration} from "test/lib/LibStackGeneration.sol";

contract FlowTimeTest is FlowTest {
function testFlowBasicFlowTime(uint256[] memory writeToStore) public {
/// `flow()` writes the eval2 `writes` array to the interpreter store
/// under `DEFAULT_STATE_NAMESPACE`. (No time semantics — see file
/// note above the contract.)
function testFlowBasicWritesKvsToStore(uint256[] memory writeToStore) public {
vm.assume(writeToStore.length != 0);

(IFlowV5 flow, EvaluableV2 memory evaluable) = deployFlow();
Expand Down
Loading