Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
8fb14d60
Commit
8fb14d60
authored
May 03, 2021
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
linting
parent
c4030892
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
execution-context.ts
libs/remix-lib/src/execution/execution-context.ts
+9
-3
util.ts
libs/remix-lib/src/util.ts
+1
-1
No files found.
libs/remix-lib/src/execution/execution-context.ts
View file @
8fb14d60
...
...
@@ -39,10 +39,16 @@ class StateManagerCommonStorageDump extends StateManager {
return
super
.
putContractStorage
(
address
,
key
,
value
)
}
dumpStorage
(
address
)
{
return
new
Promise
<
StorageDump
>
(
async
(
resolve
,
reject
)
=>
{
async
dumpStorage
(
address
)
{
let
trie
try
{
trie
=
await
this
.
_getStorageTrie
(
address
)
}
catch
(
e
)
{
console
.
log
(
e
)
throw
e
}
return
new
Promise
<
StorageDump
>
((
resolve
,
reject
)
=>
{
try
{
const
trie
=
await
this
.
_getStorageTrie
(
address
)
const
storage
=
{}
const
stream
=
trie
.
createReadStream
()
stream
.
on
(
'data'
,
(
val
)
=>
{
...
...
libs/remix-lib/src/util.ts
View file @
8fb14d60
...
...
@@ -14,7 +14,7 @@ import { BN, bufferToHex, keccak, setLengthLeft, toBuffer } from 'ethereumjs-uti
ints: IntArray
*/
/**
/**
* Converts a hex string to an array of integers.
*/
export
function
hexToIntArray
(
hexString
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment