ltzmaxwell
ltzmaxwell
It seems that function "lookupFiltered" is only choosing nodes that "wasContactedRecently", without calculating distance, right?
1、a new package helps building governance: propose, vote ,execute, etc; 2、more test needed, some TODOs;
### Version VisualStudio Code extension ### Operating System MacOS ### Your question as the title says.
**Pinned Update:** The original https://github.com/gnolang/gno/pull/1426 is now divided into 4 parts, with the dependency relationship being: https://github.com/gnolang/gno/pull/1426 < https://github.com/gnolang/gno/pull/1775, https://github.com/gnolang/gno/pull/1426
support type decl upon pointer type: ```go package main import "fmt" // Define a base type type Base int // Declare a new type that is a pointer to the...
This error is identified by #1426, here is a quick fix. It can also be seen as the beginning of a refactoring effort on #1426 to break it down into...
### Problem definition: sometimes we need to check this kind of compile error in early stage : ```go package main func main() { println(int(1) + int8(1)) } // Go_Error: //...
This is a fix to #1569 . Thanks to @thehowl for identifying this issue and providing a thorough and insightful analysis. Here is an further analysis based on #1569 :...
this is a fix to #1135 . ```go package main func main() { var fns []func() for _, v := range []int{1, 2, 3} { x := v*100 + v...