Details
Description
There is a bug on translations with decorators.
This:
{ delay(200) => autoE2EChain }Becomes:
{ ackedWriteAhead => { delay( 200 ) => { lazyOpen =>
{ stubbornAppend => rpcSink( "blitzwing", 35853 ) } } } }Should be :
{ delay( 200 ) => { ackedWriteAhead => { lazyOpen => { stubbornAppend => rpcSink( "blitzwing", 35853 ) }
} } }