Skip to content

Commit

Permalink
Merge branch 'master' into chess
Browse files Browse the repository at this point in the history
* master:
  Fix plugin docs (#2554)
  Use protobuf version 3 (#2558)
  • Loading branch information
ekilmer committed Jun 1, 2022
2 parents d8afc95 + dc99880 commit e761932
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/plugins.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Core

.. py:function:: will_fork_state_callback(self, state, expression, solutions, policy)
.. py:function:: did_fork_state_callback(self, new_state, expression, new_value,policy)
.. py:function:: did_fork_state_callback(self, new_state, expression, solutions, policy, children)
.. py:function:: will_load_state_callback(self, state_id)
Expand Down Expand Up @@ -40,9 +40,9 @@ EVM
.. py:function:: did_evm_execute_instruction_callback(self, last_unstruction, last_arguments, result)
.. py:function:: did_evm_read_memory_callback(self, offset, operators)
.. py:function:: did_evm_read_memory_callback(self, offset, value, size)
.. py:function:: did_evm_write_memory_callback(self, offset, operators)
.. py:function:: did_evm_write_memory_callback(self, offset, value, size)
.. py:function:: on_symbolic_sha3_callback(self, data, know_sha3)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def rtd_dependent_deps():
python_requires=">=3.7",
install_requires=[
"pyyaml",
"protobuf",
"protobuf~=3.20",
# evm dependencies
"pysha3",
"prettytable",
Expand Down

0 comments on commit e761932

Please sign in to comment.