mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 01:43:47 +00:00
core/tracing: add a package-level doc comment
This commit is contained in:
parent
8a4402993a
commit
eaacae4f4d
1 changed files with 8 additions and 0 deletions
|
|
@ -14,6 +14,14 @@
|
||||||
// You should have received a copy of the GNU Lesser General Public License
|
// 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/>.
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
// Package tracing defines hooks for 'live tracing' of block processing and transaction
|
||||||
|
// execution. Here we define the low-level [Hooks] object that carries hooks which are
|
||||||
|
// invoked by the go-ethereum core at various points in the state transition.
|
||||||
|
//
|
||||||
|
// To create a tracer that can be invoked with Geth, you need to register it using
|
||||||
|
// [github.com/ethereum/go-ethereum/eth/tracers.LiveDirectory.Register].
|
||||||
|
//
|
||||||
|
// See https://geth.ethereum.org/docs/developers/evm-tracing/live-tracing for a tutorial.
|
||||||
package tracing
|
package tracing
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue