mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-27 03:58:06 +00:00
9 lines
85 B
Go
9 lines
85 B
Go
|
package neotest
|
||
|
|
||
|
var _nonce uint32
|
||
|
|
||
|
func nonce() uint32 {
|
||
|
_nonce++
|
||
|
return _nonce
|
||
|
}
|