mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-31 00:53:46 +00:00
* add KeccakCodeHash and CodeSize to StateAccount * update StateAccount marshalling logic * change emptyCodeHash to poseidon(nil) * purge StateAccount.hash * fix/disable failing tests * change keccak and poseidon hash order in StateAccount * fix lint * update l2trace account wrapper * update eth_getProof response type * fix eth_getProof response type * goimports * update the codehash computation * update the codehash test cases * go mod tidy * fix tests * use keccak instead of poseidon * update trace codehash field name * upgrade zktrie to 4.2 * trigger ci * update state account marshalling according to spec * improve generatorStats estimation * add comment * upgrade zktrie to 4.3 * go mod tidy * misc fixes * fix TestDump * fix snap sync tests * handle err in the codehash * fix tests in snapshot/generate_test.go * remove prevhash from state journal * add state_account_marshalling_test.go * goimports * add more tests --------- Co-authored-by: Ho Vei <noelwei@gmail.com> Co-authored-by: Haichen Shen <shenhaichen@gmail.com>
92 lines
2.9 KiB
Go
92 lines
2.9 KiB
Go
// Copyright 2019 The go-ethereum Authors
|
|
// This file is part of the go-ethereum library.
|
|
//
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package snapshot
|
|
|
|
import (
|
|
"bytes"
|
|
"math/big"
|
|
|
|
"github.com/scroll-tech/go-ethereum/common"
|
|
"github.com/scroll-tech/go-ethereum/rlp"
|
|
)
|
|
|
|
// Account is a modified version of a state.Account, where the root is replaced
|
|
// with a byte slice. This format can be used to represent full-consensus format
|
|
// or slim-snapshot format which replaces the empty root and code hash as nil
|
|
// byte slice.
|
|
type Account struct {
|
|
Nonce uint64
|
|
Balance *big.Int
|
|
Root []byte
|
|
KeccakCodeHash []byte
|
|
PoseidonCodeHash []byte
|
|
CodeSize uint64
|
|
}
|
|
|
|
// SlimAccount converts a state.Account content into a slim snapshot account
|
|
func SlimAccount(nonce uint64, balance *big.Int, root common.Hash, keccakcodehash []byte, poseidoncodehash []byte, codesize uint64) Account {
|
|
slim := Account{
|
|
Nonce: nonce,
|
|
Balance: balance,
|
|
}
|
|
if root != emptyRoot {
|
|
slim.Root = root[:]
|
|
}
|
|
if !bytes.Equal(keccakcodehash, emptyKeccakCode[:]) {
|
|
slim.KeccakCodeHash = keccakcodehash
|
|
slim.PoseidonCodeHash = poseidoncodehash
|
|
slim.CodeSize = codesize
|
|
}
|
|
return slim
|
|
}
|
|
|
|
// SlimAccountRLP converts a state.Account content into a slim snapshot
|
|
// version RLP encoded.
|
|
func SlimAccountRLP(nonce uint64, balance *big.Int, root common.Hash, keccakcodehash []byte, poseidoncodehash []byte, codesize uint64) []byte {
|
|
data, err := rlp.EncodeToBytes(SlimAccount(nonce, balance, root, keccakcodehash, poseidoncodehash, codesize))
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return data
|
|
}
|
|
|
|
// FullAccount decodes the data on the 'slim RLP' format and return
|
|
// the consensus format account.
|
|
func FullAccount(data []byte) (Account, error) {
|
|
var account Account
|
|
if err := rlp.DecodeBytes(data, &account); err != nil {
|
|
return Account{}, err
|
|
}
|
|
if len(account.Root) == 0 {
|
|
account.Root = emptyRoot[:]
|
|
}
|
|
if len(account.KeccakCodeHash) == 0 {
|
|
account.KeccakCodeHash = emptyKeccakCode[:]
|
|
account.PoseidonCodeHash = emptyPoseidonCode[:]
|
|
account.CodeSize = 0
|
|
}
|
|
return account, nil
|
|
}
|
|
|
|
// FullAccountRLP converts data on the 'slim RLP' format into the full RLP-format.
|
|
func FullAccountRLP(data []byte) ([]byte, error) {
|
|
account, err := FullAccount(data)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return rlp.EncodeToBytes(account)
|
|
}
|