Closed leighmcculloch closed 1 year ago
Remove the re-export of types into top-level that occurs when only one of the curr or next features are enabled.
curr
next
It is confusing that when both curr and next are enabled that the top-level exports change. It's also difficult to debug.
In most cases applications could just depend on the specific module they'd like to use, and as such can reference stellar_xdr::curr::....
stellar_xdr::curr::...
What
Remove the re-export of types into top-level that occurs when only one of the
curr
ornext
features are enabled.Why
It is confusing that when both
curr
andnext
are enabled that the top-level exports change. It's also difficult to debug.In most cases applications could just depend on the specific module they'd like to use, and as such can reference
stellar_xdr::curr::...
.