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
The Message Pool is a subsystem in the Filecoin blockchain system. The message pool acts as the interface between Filecoin nodes and a peer-to-peer network used for off-chain message transmission. It is used by nodes to maintain a set of messages to transmit to the Filecoin VM (for “on-chain” execution).
The
Message Pool
is a subsystem in the Filecoin blockchain system. The message pool acts as the interface between Filecoin nodes and a peer-to-peer network used for off-chain message transmission. It is used by nodes to maintain a set of messages to transmit to the Filecoin VM (for “on-chain” execution).Spec reference:
Existing implementations for reference:
Needs access to the following subsystems:
StateTree
Messages
mined intoblocks
MessagePubSub
SignedMessages
Although the spec is very incomplete you can expect the following data structures/methods:
struct MessagePool
and constructoradd_new_message
find_messages
//returns set of messages in mempoolprofitable_msgs
// returns messages most profitable to mine for the minerMessageQuery struct
and constructorFrom Lotus implementation:
Pool struct
add_new_message:
The text was updated successfully, but these errors were encountered: