fix: adding shims for seammless integration of wasm dependencies with cjs and esm
Signed-off-by: Francisco Javier Ribo Labrador <[email protected]>
Signed-off-by: Francisco Javier Ribo Labrador <[email protected]>
Signed-off-by: Francisco Javier Ribo Labrador <[email protected]>
Signed-off-by: jeluard <[email protected]>
Changelog for `cardano-node-10.7`
Added the following tests:
* JSON roundtrip property test
* Unit test for trying to decode an empty object `{}` for the
`NonEmptyMap`, and an empty list `[]` for the `NonEmptySet`. These
scenarios are expected to fail with a specific error message.
OutboundSourcePort causes replacement connections to the same peer to get the same connection ID. The old connection's cleanup goroutine would unconditionally delete the map entry, destroying the new connection's registration. Guard the delete with a pointer comparison so stale cleanups are no-ops. Signed-off-by: wcatz <[email protected]>