File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ stack items are lazily duplicated.
8
8
So you must never directly change a buffer from the stack,
9
9
instead you should `copy` it first
10
10
11
- not all stack items are 32 bytes, so if the operation realies on the stack
11
+ not all stack items are 32 bytes, so if the operation relies on the stack
12
12
item length then you must use utils.pad(<item>, 32) first.
13
13
*/
14
14
import { zeros } from 'ethereumjs-util'
@@ -30,12 +30,12 @@ export interface RunCodeOpts {
30
30
txContext ?: TxContext
31
31
gasPrice ?: Buffer
32
32
/**
33
- * The address where the call originated from. The address should be a `Buffer` of 20bits . Defaults to `0`
33
+ * The address where the call originated from. The address should be a `Buffer` of 20 bits . Defaults to `0`
34
34
*/
35
35
origin ?: Buffer
36
36
message ?: Message
37
37
/**
38
- * The address that ran this code. The address should be a `Buffer` of 20bits . Defaults to `0`
38
+ * The address that ran this code. The address should be a `Buffer` of 20 bits . Defaults to `0`
39
39
*/
40
40
caller ?: Buffer
41
41
/**
You can’t perform that action at this time.
0 commit comments