|
|
|
@ -53,7 +53,14 @@ export const VmDebugger = ({ vmDebugger: { registerEvent }, currentBlock, curren |
|
|
|
|
|
|
|
|
|
return ( |
|
|
|
|
<div id='vmdebugger' className="d-flex"> |
|
|
|
|
<div className='d-flex flex-column px-2 pr-2' style={{ flex: 1 }}> |
|
|
|
|
<div |
|
|
|
|
className='d-flex flex-column px-2 pr-2' |
|
|
|
|
style={{ |
|
|
|
|
flex: 1, |
|
|
|
|
overflow: "hidden", |
|
|
|
|
textOverflow: "ellipsis" |
|
|
|
|
}} |
|
|
|
|
> |
|
|
|
|
<CallstackPanel className="pb-1" calldata={callStackPanel} /> |
|
|
|
|
<StackPanel className="pb-1" calldata={stackPanel} /> |
|
|
|
|
<MemoryPanel className="pb-1" calldata={memoryPanel} /> |
|
|
|
@ -61,7 +68,13 @@ export const VmDebugger = ({ vmDebugger: { registerEvent }, currentBlock, curren |
|
|
|
|
<ReturnValuesPanel className="pb-1" dropdownName='Return Value' calldata={returnValuesPanel || {}} /> |
|
|
|
|
<GlobalVariables className="pb-1" block={currentBlock} receipt={currentReceipt} tx={currentTransaction} /> |
|
|
|
|
</div> |
|
|
|
|
<div className='d-flex flex-column px-2 pl-2' style={{ flex: 1 }}> |
|
|
|
|
<div className='d-flex flex-column px-2 pl-2' |
|
|
|
|
style={{ |
|
|
|
|
flex: 1, |
|
|
|
|
overflow: "hidden", |
|
|
|
|
textOverflow: "ellipsis" |
|
|
|
|
}} |
|
|
|
|
> |
|
|
|
|
<FullStoragesChangesPanel className="pb-1" calldata={fullStoragesChangesPanel} /> |
|
|
|
|
<CalldataPanel className="pb-1" calldata={calldataPanel} /> |
|
|
|
|
</div> |
|
|
|
|