Joonmo Yang
Joonmo Yang
Thanks for the response! Building the bindings myself is a viable option for me, so I'll go for it this time. As you said above, it seems that the os...
Running `ls -alh` on the home folder shows the following result: ``` Run ls -alh ~/ total 60K drwxrwxrwx 11 runner docker 4.0K Apr 19 12:10 . drwxr-xr-x+ 5 root...
For those looking for a workaround to use your own version of typescript, this recipe worked for my case. 1. Add typescript and ts-node on your package.json. Change the package...
I found out that the root cause of this problem is the speed of `ArchiveDB::get` function. It happens while reading the trie node of the state db. The abstract call...
I investigated futher down the implementation, and found out that this line takes long time for this situation: https://github.com/CodeChain-io/codechain/blob/48a3b880f96a345d47acc6a48902fb43a06702ef/util/kvdb-rocksdb/src/lib.rs#L570 I think the rocksdb's performance is the issue here.
The problem was gone when I switched the underlying disk from HDD to SSD. It seems this problem only affects the machines with rotating disks.
I think it's good enough. Are we going to handle only the peers that sent an invalid block? or are we going to handle other misbehaviors(e.g. too late response) too?
@sgkim126 I remember you had some plan about "scoring" the peers for managing the connections. Is that still valid? and would it be related to this issue?
From where?
Thanks for the suggestion, but maybe I should explain my situation a bit more. I'm trying to replicate "activities" feature in KDE, which is really similar to vdesk of this...