Giuseppe Bertone

Results 34 comments of Giuseppe Bertone

@cameel I cannot open issues on https://github.com/ethereum/solc-bin, so I opened it on https://github.com/ethereum/solidity

@kevinweaver we need to keep this PR pending until the Solidity team reaches an agreement about how to update the management of release and nightly builds (see [here](https://github.com/ethereum/solidity/issues/13015)). When that...

> I upgraded gradle to nightly build of 7.2 and the issue is gone: > `./gradlew wrapper --gradle-version=7.2-20210619231202+0000` > > so it seems to be a bug in 7.1 which...

It seems to me that **sjcl.hash.sha256.hash** actually supports only ASCII characters. I tested with a big loop - thousand of chars - and it stops working in the right manner...

Teku [seems to be waiting](https://github.com/ConsenSys/teku/blob/b403f8e524f405cf3905c942c6002f4c08b940f3/ethereum/statetransition/src/main/java/tech/pegasys/teku/statetransition/forkchoice/TerminalPowBlockMonitor.java#L133) for the [Bellatrix fork](https://blog.ethereum.org/2022/08/24/mainnet-merge-announcement/) (epoch 144896 – 11:34:47am UTC on Sept 6, 2022) to monitor EL for TTD. Maybe Prysm does the same?

I checked on [Prysm source code](https://github.com/prysmaticlabs/prysm/blob/d077483577bc8fdc658940adf71d8d11dfa5949b/beacon-chain/execution/check_transition_config.go#L29-L39), and it seems it also waits for the Bellatrix fork before starting to monitor EL. ```go // Checks the transition configuration between Prysm and...

Although, it should have been [set that variable few days ago](https://github.com/prysmaticlabs/prysm/blob/dfa400d4a1943da5dc95f716bfcafc196291284f/config/params/mainnet_config.go#L25): ```go mainnetBellatrixForkEpoch = 144896 // Sept 6, 2022, 11:34:47am UTC ... BellatrixForkEpoch: mainnetBellatrixForkEpoch, ``` So, maybe that is not...

And yes, [it waits too](https://github.com/prysmaticlabs/prysm/blob/d077483577bc8fdc658940adf71d8d11dfa5949b/beacon-chain/execution/check_transition_config.go#L90-L95): ```go if currentEpoch >= params.BeaconConfig().BellatrixForkEpoch && !hasTtdReached { hasTtdReached, err = s.logTtdStatus(ctx, ttd) if err != nil { log.WithError(err).Error("Could not log ttd status") } }...

I agree with @pietjepuk2 and because we already use other _lower then 1 ETH_ penalties (i.e. the epoch leaking) it seems to me a good choice to reduce that 1...

Hi @agadzhalov I'm trying to build the SDK. The steps I followed and the error are in the description. I think the problem is in the import to the proto...