mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-11-24 14:35:47 +00:00
* setting all the consensus timeout values at once (if changed) * mutex protection of the elements tx crafing methods (sequential processing) * extending the TestMachineNFTIssuance test case to parallel threads and threading issues * moving all elements-rpc usage to the elementd-connector.go file Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
8 lines
74 B
Go
8 lines
74 B
Go
package util
|
|
|
|
import "sync"
|
|
|
|
var (
|
|
TerminationWaitGroup sync.WaitGroup
|
|
)
|