mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
updated comments after review
This commit is contained in:
parent
e5cc4baff7
commit
5875394cab
1 changed files with 2 additions and 0 deletions
|
|
@ -4,10 +4,12 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Textual version number of accounting API
|
||||||
const AccountingVersion = "1.0"
|
const AccountingVersion = "1.0"
|
||||||
|
|
||||||
var errNoAccountingMetrics = errors.New("accounting metrics not enabled")
|
var errNoAccountingMetrics = errors.New("accounting metrics not enabled")
|
||||||
|
|
||||||
|
// AccountingApi provides an API to access account related information
|
||||||
type AccountingApi struct {
|
type AccountingApi struct {
|
||||||
metrics *AccountingMetrics
|
metrics *AccountingMetrics
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue