mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
Update comments
This commit is contained in:
parent
9b1fd811f8
commit
f137c10f33
1 changed files with 3 additions and 3 deletions
|
|
@ -77,9 +77,9 @@ type extWitness struct {
|
||||||
State [][]byte
|
State [][]byte
|
||||||
}
|
}
|
||||||
|
|
||||||
// ExecutionWitness is a witness json encoding for transferring across clients
|
// ExecutionWitness is a witness json encoding for transferring across the network.
|
||||||
// in the future, we'll probably consider using the extWitness format instead for less overhead.
|
// In the future, we'll probably consider using the extWitness format instead for less overhead if performance becomes an issue.
|
||||||
// currently we're using this format for compatibility with reth and also for simplicity in terms of parsing.
|
// Currently using this format for ease of reading, parsing and compatibility across clients.
|
||||||
type ExecutionWitness struct {
|
type ExecutionWitness struct {
|
||||||
Headers []*types.Header `json:"headers"`
|
Headers []*types.Header `json:"headers"`
|
||||||
Codes map[string]string `json:"codes"`
|
Codes map[string]string `json:"codes"`
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue