andri lim

Results 82 issues of andri lim

I've changed the way to silence unused warning based on chronicles log level.

### Description ```Nim import std/options type BID = string or uint64 Future[T] = ref object of RootObj internalValue: T InternalRaisesFuture[T] = ref object of Future[T] proc newInternalRaisesFutureImpl[T](): InternalRaisesFuture[T] = let...

### Description ```Nim import std/[sequtils, tables] type MemBackendRef = ref object rFil: Table[int,int] iterator walkFil(be: MemBackendRef): int = for qid in be.rFil.keys.toSeq: yield qid proc verifyFilters() = proc verifyImpl(be: MemBackendRef)...

this is an offshoot from #4799 ```Nim type Vehicle = object of RootObj tire: int Car = object of Vehicle Bike = object of Vehicle proc testVehicle(x: varargs[Vehicle]): string =...

ARC/ORC Memory Management

### Description I expect the `encode` of `Base64Types` will be selected by the compiler, but it's not. ```Nim type Base64* = object ## Type to use RFC4648 alphabet without padding...

Overload Resolution

Currently, txPool still using older tx rank rule. Add EIP-4844 blob fee to the tx ranker. Cancun engine API test case is failing

Hive
txpool

One of hive test involving `engine_getPayloadBodiesByRangeV1` will make the test timeout. The hive is sending parallel request to client. It is not clear who is responsible for this, either in...

bug
RPC
EL

Our current beacon sync operates almost silent, it's hard to know what is going on. But too much logging can be confusing too.

Sync
EL

Like the snap sync transition to full sync when snap sync synced to the chain tip, we need to add beacon sync too.

Sync

Spec: https://eips.ethereum.org/EIPS/eip-5793. Fork ID test cases in hive also require eth/68 to pass the test.

Hive
Sync
EL