mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
core/vm: docs
This commit is contained in:
parent
192e00b043
commit
3439ce6789
1 changed files with 5 additions and 0 deletions
|
|
@ -60,6 +60,11 @@ type StateDB interface {
|
||||||
SelfDestruct(common.Address) uint256.Int
|
SelfDestruct(common.Address) uint256.Int
|
||||||
HasSelfDestructed(common.Address) bool
|
HasSelfDestructed(common.Address) bool
|
||||||
|
|
||||||
|
// SelfDestruct6780 is post-EIP6780 selfdestruct, which means that it's a
|
||||||
|
// send-all-to-beneficiary, unless the contract was created in this same
|
||||||
|
// transaction, in which case it will be destructed.
|
||||||
|
// This method returns the prior balance, along with a boolean which is
|
||||||
|
// true iff the object was indeed destructed.
|
||||||
SelfDestruct6780(common.Address) (uint256.Int, bool)
|
SelfDestruct6780(common.Address) (uint256.Int, bool)
|
||||||
|
|
||||||
// Exist reports whether the given account exists in state.
|
// Exist reports whether the given account exists in state.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue