Skip to content

Latest commit

 

History

History
100 lines (55 loc) · 2.2 KB

runtxresult.md

File metadata and controls

100 lines (55 loc) · 2.2 KB

ethereumjs-vm > RunTxResult

Interface: RunTxResult

Execution result of a transaction

Hierarchy

EVMResult

↳ RunTxResult

Index

Properties


Properties

amountSpent

● amountSpent: BN

Defined in runTx.ts:46

The amount of ether used by this transaction


bloom

● bloom: Bloom

Defined in runTx.ts:42

Bloom filter resulted from transaction


<Optional> createdAddress

● createdAddress: Buffer

Inherited from EVMResult.createdAddress

Defined in evm/evm.ts:32

Address of created account durint transaction, if any


execResult

● execResult: ExecResult

Inherited from EVMResult.execResult

Defined in evm/evm.ts:36

Contains the results from running the code, if any, as described in runCode


<Optional> gasRefund

● gasRefund: BN

Defined in runTx.ts:50

The amount of gas as that was refunded during the transaction (i.e. gasUsed = totalGasConsumed - gasRefund)


gasUsed

● gasUsed: BN

Inherited from EVMResult.gasUsed

Defined in evm/evm.ts:28

Amount of gas used by the transaction