We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b7539c commit 5c6c1cdCopy full SHA for 5c6c1cd
lib/evm/eei.ts
@@ -27,6 +27,9 @@ export interface RunResult {
27
logs: any // TODO: define type for Log (each log: [Buffer(address), [Buffer(topic0), ...]])
28
returnValue?: Buffer
29
gasRefund: BN
30
+ /**
31
+ * A map from the accounts that have self-destructed to the addresses to send their funds to
32
+ */
33
selfdestruct: { [k: string]: Buffer }
34
}
35
lib/evm/interpreter.ts
@@ -75,7 +75,7 @@ export interface ExecResult {
75
*/
76
gasRefund?: BN
77
/**
78
- * A set of accounts that have self-destructed
79
80
selfdestruct?: { [k: string]: Buffer }
81
0 commit comments