mimblewimble / grin

Minimal implementation of the Mimblewimble protocol.
https://grin.mw/
Apache License 2.0
5.04k stars 990 forks source link

Concurrent aggsig transactions #593

Closed yeastplume closed 6 years ago

yeastplume commented 6 years ago

Following from https://github.com/mimblewimble/grin/pull/530, at present there is a single context object per wallet for aggsig transactions, which means everything will get very confused if two transactions are sent to a wallet at once.

-Each transaction should be given an ID -The context object should map IDs to instances of all of the data needed for a transaction.

yeastplume commented 6 years ago

Closing via #685