Twelfthonehone

Results 13 comments of Twelfthonehone

How about `hello_blockchain = "0x1234"` ? Or is this not what you want ?

I see. How about `hello_blockchain = "0xf854...YOUR DEFAULT ADDRESS"`

Ah, I think I understand now. While it is still not sure this is the "bug of move-analyzer", maybe you want to say is right. Don't you think that "enhancement...

I changed `move/language/tools/move-package/src/source_package/manifest_parser.rs from line:226` into ``` if entry_str == EMPTY_ADDR_STR { // original codes // if addresses.insert(ident, None).is_some() { // bail!("Duplicate address name '{}' found.", ident); // } //...

hi, this code ``` fun main() { let i = 0; while (true) { i = i + 1; i = i + 2; if (i < 9) { continue...

well, it looks `loop` generates one more branch than `while (true)`. very interesting.

I'm not sure this is expected behavior or not, but ``` fun main() { let i = 0; while (true) { i = i + 1; if (i > 5)...

hi, more interesting idea came up. ``` fun main() { let i = 0; i = i + 2; i = i + 3; i = i + 4; while...

you can actually. move ir is available. https://github.com/move-language/move/tree/main/language/move-ir-compiler https://github.com/move-language/move/tree/main/language/move-vm/transactional-tests/tests/control_flow