Anoma.Node.Examples.Mempool (Anoma v0.31.0)

I contain examples on how to interact with the mempool.

Summary

Functions

I add a transaction to the mempool that errors when executed.

I add multiple transactions to the mempool.

I add a transaction to the mempool.

I run a list of transactions and create a block for each of them.

I run a transaction and let it complete. I expect a transaction description with the following values

I add a transaction to the mempool that fails when executed. I execute this transaction.

I add a transaction to the mempool that executes properly. I execute this transaction.

I run a transaction and execute it to create a block.

Given a node id and a transaction list, I wait until these transactions have been written into the events table its consensus column.

Given a node id and a transaction list, I wait until these transactions have been written into the events table its consensus column.

Given a node id and a transaction, I wait until this transaction is removed from the events table.

Functions

Link to this function

add_error_transaction(enode \\ ENode.start_node())

I add a transaction to the mempool that errors when executed.

Link to this function

add_error_transaction(enode, transaction)

Link to this function

add_multiple_transactions(enode \\ ENode.start_node())

I add multiple transactions to the mempool.

Link to this function

add_multiple_transactions(enode, transactions)

Link to this function

add_transaction(enode \\ ENode.start_node())

I add a transaction to the mempool.

Link to this function

add_transaction(enode, transaction)

Link to this function

complete_ten_transactions(enode \\ ENode.start_node())

I run a list of transactions and create a block for each of them.

Link to this function

complete_ten_transactions(enode, transactions)

Link to this function

complete_transaction(enode \\ ENode.start_node(), round \\ 1)

I run a transaction and let it complete. I expect a transaction description with the following values:

  • {backend, noun}: the transaction and noun
  • The expected result of executing the transaction E.g., {:ok, {:read_value, [["key" | 0] | 0]}}
  • The id of the transaction
Link to this function

complete_transaction(enode, transaction, round)

Link to this function

execute_multiple_transactions(enode \\ ENode.start_node())

I add a transaction to the mempool that fails when executed. I execute this transaction.

Link to this function

execute_multiple_transactions(enode, transactions)

Link to this function

execute_transaction(enode \\ ENode.start_node())

I add a transaction to the mempool that executes properly. I execute this transaction.

Link to this function

execute_transaction(enode, transaction)

Link to this function

make_block(enode \\ ENode.start_node())

I run a transaction and execute it to create a block.

I do not wait for the events of the block creation.

Link to this function

make_block(enode, transaction)

Link to this function

wait_for_consensus_write(enode \\ ENode.start_node(), transaction)

Given a node id and a transaction list, I wait until these transactions have been written into the events table its consensus column.

Link to this function

wait_for_transaction_in_table(enode \\ ENode.start_node(), transaction)

Given a node id and a transaction list, I wait until these transactions have been written into the events table its consensus column.

Link to this function

wait_for_transaction_removed(enode \\ ENode.start_node(), transaction)

Given a node id and a transaction, I wait until this transaction is removed from the events table.