Chih Cheng Liang

Results 105 comments of Chih Cheng Liang

Discussed with @vbuterin yesterday. The conclusion was to accept the behavior for the time being since there might be more degenerate cases popping up in the future. What do you...

Some idea I can come up with now. Most of these can only start after the migration of BLS aggregation API from Trinity to here. ### Benchmark that focuses on...

removing that assert make perfect sense. Currently, the assertion is not giving useful information but introducing complexity when tracing bug. Would also suggest assigning a minimum value for `sqrt_of_total_deposits`, to...

Just thinking out loud. So during these 2 dynasties, the validator loses deposit due to not voting. but should be able to earn back after few more dynasties. If we...

Note that other clients still need to implement features such as: - Casper Fork Choice Rule - Epoch initialization - Casper Vote Gas Refunds - Casper Block Ordering specified in...

I would say maximizing benefits for the contract is the priority for time being.

Looks like this can be better handled by adding `STATICCALL` in the banned opcode lists in #169 .

looks like it's handled here https://github.com/ethereum/casper/pull/169/files#diff-33d26a5c0d90fb3b88e7aed738a11fc5R71 Where ``` CALL = 0xf1 CALLCODE = 0xf2 DELEGATECALL = 0xf4 STATICCALL = 0xfa ```

ah sorry, I mean `0xfa` are treated differently from other `CALL`s. Is that what you want?

One source of confusion comes from the fact that `last_voter_rescale` and `last_nonvoter_rescale` are variables that are used to debug instead of really required to be there. So a proposed change...