Working to connect the performance_test_basic.py to the trx_generator as well as make use of the trx_provider interface provided.
Update message in context free action of the transaction to be easier to parse in the future by delimiting with : and adding the current timestamp for future latency calculations.
Added command line arguments:
priv-keys - comma-separated list of private keys in same order of accounts list that will be used to sign transactions. Minimum required: 2.
last-irreversible-block-id - Current last-irreversible-block-id (LIB ID) to use for transactions.
Cleanup currently unused code/ideas like batching and previous implementations of push transaction(s).
Implement initial use of trx_provider to send transactions to the p2p interface. Currently will send an initial batch of transfer transactions between the configured accounts.
Add ability to update transaction collection prior to send to update uniqueness fields and tracking timestamps and re-signing prior to sending.
Working to connect the
performance_test_basic.py
to thetrx_generator
as well as make use of thetrx_provider
interface provided.Update message in context free action of the transaction to be easier to parse in the future by delimiting with
:
and adding the current timestamp for future latency calculations.Added command line arguments:
priv-keys
- comma-separated list of private keys in same order of accounts list that will be used to sign transactions. Minimum required: 2.last-irreversible-block-id
- Current last-irreversible-block-id (LIB ID) to use for transactions.Cleanup currently unused code/ideas like batching and previous implementations of push transaction(s).
Implement initial use of
trx_provider
to send transactions to the p2p interface. Currently will send an initial batch of transfer transactions between the configured accounts.Add ability to update transaction collection prior to send to update uniqueness fields and tracking timestamps and re-signing prior to sending.