Skip to content

Commit 4df4ac6

Browse files
author
Peter Pratscher
authored
Merge pull request gobitfly#37 from dostu/patch-1
Fix contract state tab
2 parents 2ef6974 + 65d4fc4 commit 4df4ac6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routes/account.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ router.get('/:account', function(req, res, next) {
5050
data.source = JSON.parse(source);
5151

5252
data.contractState = [];
53-
if (!data.abi) {
53+
if (!data.source.abi) {
5454
return callback();
5555
}
5656
var abi = JSON.parse(data.source.abi);

0 commit comments

Comments
 (0)