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
If there are more than 1024 transactions that want to be included in a tick, we should have a way to choose which one should be included. (for now it's random)
new algo should be: for each address which has pending tx for the tick of interest compute [balance]*[targetTick - latestOutgoingTick] as [weight]. Pick txs randomly proportional to their weight.
The text was updated successfully, but these errors were encountered:
Franziska and me thought about problems due to spamming many tx by one entity.
One idea to address that is change [weight] to:
[weight] = [balance]*[targetTick - latestOutgoingTick + 1] and include the pending tx into compuation of latestOutgoingTick.
In consequence, if you already have a pending tx in targetTick, further tx you add to targetTick will have:
[weight] = [balance]*[1]
If there are more than 1024 transactions that want to be included in a tick, we should have a way to choose which one should be included. (for now it's random)
new algo should be: for each address which has pending tx for the tick of interest compute [balance]*[targetTick - latestOutgoingTick] as [weight]. Pick txs randomly proportional to their weight.
The text was updated successfully, but these errors were encountered: