kadena-io/pact

Impossible to go back to the root namespace

CryptoPascal31 opened this issue · 2 comments

It's currently possible to switch between namespaces:

(namespace 'free)
; Do some stuffs in free
; ....
(namespace 'xxxx)
; Do some stuffs in xxx
; ....
(namespace 'free)
; Do some new stuffs stuffs in free
; ...
; ....

But however there is no way to go back to the root namespace (default when starting a transaction), as soon we have left it.

Neither (namespace "") or (namespace ".") seems to work.

That's a fair point, @CryptoPascal31 - I'd call this a reasonable feature request.

Implemented by #1174