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
{{ message }}
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.
...while this works fine (also you can use the upstream dummy() to verify this):
script {
fun dummy_2() {
assert(true, 123);
}
}
TaoHe namespace (and even TaoHe::Errors) is used multiple times in sources/, and is compiling fine. This problem (or some variation of it) seems to occur with dove test too.
The text was updated successfully, but these errors were encountered:
This is still happening with 1.5.4, however, one should use the following file to replicate the error:
script {
use TaoHe::Errors;
fun dummy_1() {
assert!(false, Errors::ownable_not_owned());
}
}
The error message is also different now:
Execution failed due to unresolved type argument(s) (i.e., `--type-args 0x1::M:T` when there is no module named M at 0x1 or no type named T in module 0x1::M)
(Also, maybe dove prove is also experiencing the same problem?)
villesundell
changed the title
Named addresses not working with Dove run/test 1.5.1
Named addresses not working with Dove run 1.5.5
Jan 25, 2022
villesundell
changed the title
Named addresses not working with Dove run 1.5.5
Named addresses not working with Dove run 1.6.0-86817ac
Feb 9, 2022
Hello!
Using TaoHe, consider the following file, and place it to
scripts/
:It results the following error message while running
dove run -v "dummy_1()"
:...while this works fine (also you can use the upstream
dummy()
to verify this):TaoHe
namespace (and evenTaoHe::Errors
) is used multiple times insources/
, and is compiling fine. This problem (or some variation of it) seems to occur withdove test
too.The text was updated successfully, but these errors were encountered: