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
You can still dispatch actions through the original silos and it will affect the combined silo.
Populating the combined silo with all the actions has the possibility of name conflicts.
Regarding 1, this is a temporary workaround.
Regarding 2, this makes the solution a bit complicated. While the internal modifier adds a prefix to avoid the naming conflict, the name of the action remains the same. Thus, with possible naming conflicts, either (a) an error should be thrown if a naming conflict occurs, or (b) a prefix should also be added to the action name (which I think would be confusing). I am leaning toward option (a). Just throw an error for naming conflicts.
When combining silos together through
Silo.combine()
, the actions from the provided silos are not carried over into the combined silo.This may be the root cause of #97.
Example code:
Output:
The text was updated successfully, but these errors were encountered: