Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/eth_plugin_interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ typedef struct ethPluginSharedRO_s {

// --8<-- [start:plugin_context]
// Plugin-only memory allocated by the Ethereum application and used by the
// plugin.
#define PLUGIN_CONTEXT_SIZE (5 * INT256_LENGTH)
// plugin. 1k memory is available.
#define PLUGIN_CONTEXT_SIZE (32 * INT256_LENGTH)
// --8<-- [end:plugin_context]
// It is recommended to cast the raw uin8_t array to a structure meaningful for
// your plugin
Expand Down