-
Notifications
You must be signed in to change notification settings - Fork 654
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix docs related to message computation refactoring
- Loading branch information
Showing
7 changed files
with
47 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
Computation | ||
=========== | ||
|
||
MessageComputation | ||
BaseComputation | ||
--------------- | ||
|
||
.. autoclass:: eth.vm.computation.MessageComputation | ||
.. autoclass:: eth.vm.computation.BaseComputation | ||
:members: | ||
|
||
MessageComputation | ||
------------------ | ||
|
||
.. autoclass:: eth.vm.computation.MessageComputation | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from eth.vm.forks.homestead.state import HomesteadState | ||
|
||
from .computation import TangerineWhistleComputation | ||
from .computation import TangerineWhistleMessageComputation | ||
|
||
|
||
class TangerineWhistleState(HomesteadState): | ||
message_computation_class = TangerineWhistleComputation | ||
message_computation_class = TangerineWhistleMessageComputation |