mirror of
https://github.com/grassrootseconomics/cic-custodial.git
synced 2024-11-11 01:36:46 +01:00
Mohammed Sohail
448b142f7c
* A nonce value can now be bootstrapped externally from any source * Removed unecessary SetNewAccountNonce method
12 lines
342 B
Go
12 lines
342 B
Go
package nonce
|
|
|
|
import "context"
|
|
|
|
// Noncestore defines how a nonce store should be implemented for any storage backend.
|
|
type Noncestore interface {
|
|
Peek(context.Context, string) (uint64, error)
|
|
Acquire(context.Context, string) (uint64, error)
|
|
Return(context.Context, string) error
|
|
SetAccountNonce(context.Context, string, uint64) error
|
|
}
|