QuarkChain / go-ethereum

Official Go implementation of the Ethereum protocol
https://geth.ethereum.org
GNU Lesser General Public License v3.0
5 stars 2 forks source link

add unmaskDaggerData to sstoragePisa precompile #110

Closed blockchaindevsh closed 1 year ago

blockchaindevsh commented 1 year ago

What is the test plan?

The main concern is performance.

BenchmarkHashimotoLight-8           1306        971743 ns/op       18704 B/op        268 allocs/op

This benchmark shows each HashimotoLight took about 1ms. Maybe enough for our case? If not we can further optimize it by using HashimotoFull.

Before actually doing integration test, we also need to add support for this new mask type in storage.

qizhou commented 1 year ago

What is the test plan?

The main concern is performance.

BenchmarkHashimotoLight-8         1306        971743 ns/op       18704 B/op        268 allocs/op

This benchmark shows each HashimotoLight took about 1ms. Maybe enough for our case? If not we can further optimize it by using HashimotoFull.

Before actually doing integration test, we also need to add support for this new mask type in storage.

If the maximum gas limit is 50e6, then 50e6 / 1306 = 38284, which is close to our target as 35000. So I think it should be fine.