File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/main/java/net/nandgr/debugger Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 11package net .nandgr .debugger .node ;
22
3- import com .fasterxml .jackson .core .JsonProcessingException ;
43import com .fasterxml .jackson .databind .ObjectMapper ;
54import net .nandgr .debugger .node .request .json .DebugTraceTransactionRequest ;
65import net .nandgr .debugger .node .request .json .GetCodeRequest ;
1615import org .apache .http .impl .client .HttpClientBuilder ;
1716import org .apache .http .util .EntityUtils ;
1817import java .io .IOException ;
19- import java .io .UnsupportedEncodingException ;
2018import java .util .*;
2119
2220public class NodeService {
Original file line number Diff line number Diff line change @@ -97,6 +97,9 @@ public List<ContractObject> loadContracts() throws TransformException {
9797 }
9898
9999 Contract contract = solcContracts .get (contractPath + ":" + cName );
100+ if (contract == null ) {
101+ continue ;
102+ }
100103 List <Code > asmCode = contract .getAsm ().getData ().get ("0" ).getCode ();
101104 String code = contract .getBinRuntime ();
102105
You can’t perform that action at this time.
0 commit comments