Adding a stub for the Mint procedure
This commit is contained in:
@@ -16,6 +16,10 @@ type Minter struct {
|
|||||||
inactiveCounters []Counter
|
inactiveCounters []Counter
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (m *Minter) Mint() string {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
func NewMinter() *Minter {
|
func NewMinter() *Minter {
|
||||||
return &Minter{
|
return &Minter{
|
||||||
oacounter: 0,
|
oacounter: 0,
|
||||||
@@ -23,3 +27,4 @@ func NewMinter() *Minter {
|
|||||||
inactiveCounters: make([]Counter),
|
inactiveCounters: make([]Counter),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user