You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't expect to see the error message contractAddress: Error: Cannot access member 'constructor' of null,, but probably null, 0x or something similar if no contractAddress is involved.
The text was updated successfully, but these errors were encountered:
PR #856 broke command line editing by wrapping stdout with a filter that
interprets ANSI escape sequences to fix colored printing on windows.
Implement the printer in Go instead so it can do its own
platform-dependent coloring.
As a nice side effect, the JS console is now noticeably more responsive
when printing results.
Fixes#1608Fixes#1612
This was added in PR ethereum#317 but was never set in `vm.NewEVMContext()`. As a result, it was always nil. After the refactoring of contract calls to use the vm.EVMRunner types, we now don't use it outside of eth/api_tracer.go. And the use there is now broken because the field is nil: when tracing a transaction or block the `vmRunner` created for the contract calls will use the header and state from the current chain head rather than from the specified block. This fixes that by removing the field and updating the tracing code to not use it either.
with
geth 1.0.1
in the JS console (viageth attach
):I don't expect to see the error message
contractAddress: Error: Cannot access member 'constructor' of null,
, but probablynull
,0x
or something similar if nocontractAddress
is involved.The text was updated successfully, but these errors were encountered: