neo-go/pkg/neotest/account.go
Anna Shaleva 4df5d370c5 neotest: export nonce() method
Sometimes user needs to construct transaction by itself, so it's better
to unify nonce sources for auto-generated and manually-generated
transactions to avoid nonce collisions in tests.
2021-11-11 20:00:40 +03:00

9 lines
164 B
Go

package neotest
var _nonce uint32
// Nonce returns unique number that can be used as nonce for new transactions.
func Nonce() uint32 {
_nonce++
return _nonce
}