Vincenzo Palazzo

Results 500 comments of Vincenzo Palazzo

>If clightning is already configured to use a postgres database, it would be great to create a table there, that rather than creating a new sqlite3 database on disk Writing...

The problem looks like the query cache, there is some method to remove some queries from the cache, like some black list?

I think here you are only trying to run another version of aleph. try --help to have more info on the commands supported

I think have a docker image for each instance of aleph.js is cool, because I can pull directly the image without worry about anything. The easy deno command, it is...

In according with our docs https://github.com/vlang/v/blob/master/doc/docs.md#sum-types this should work, but not sure if we should work also with this internal cast, but a work around can be ```v module main...

Marked as discussion, we can see what the other think too

>If we want to use smartcast, we must use match mut st.stmt { because st is mut. Maybe we can generate a suggestion at compile time? >Since println doesn't return...

mh! I think the return type is a result, so or a value (int) or a error, so I make the compiler happy by using the `or {return error("...")}`

>Well... ?int is optional return, meaning valid value or error. !int means result return, meaning value value or none. You have !int as the return type. I do not know,...

Simple example to reproduce the problem ``` fn unwrap_int() !int { return 1 } fn unwrap_function() ?int { return unwrap_int() } fn main() { x := unwrap_int() or {panic(err)} println(x)...