mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2025-02-05 23:41:19 +00:00
9 lines
168 B
Go
9 lines
168 B
Go
package neotest
|
|
|
|
var _nonce uint32
|
|
|
|
// Nonce returns a unique number that can be used as a nonce for new transactions.
|
|
func Nonce() uint32 {
|
|
_nonce++
|
|
return _nonce
|
|
}
|