aboutsummaryrefslogtreecommitdiffstats
path: root/interfaces.go
diff options
context:
space:
mode:
authorKyuntae Ethan Kim <ethan.kyuntae.kim@gmail.com>2017-09-15 17:30:17 +0800
committerFelix Lange <fjl@users.noreply.github.com>2017-09-15 17:30:17 +0800
commitc197d805f71ea45eaed7f8c692401502ba92d978 (patch)
treeb554b35963158a8040878753dd4a5ebbedf38121 /interfaces.go
parent5705ad004e01054c6aac173348b74c1097b40ff1 (diff)
downloadgo-tangerine-c197d805f71ea45eaed7f8c692401502ba92d978.tar
go-tangerine-c197d805f71ea45eaed7f8c692401502ba92d978.tar.gz
go-tangerine-c197d805f71ea45eaed7f8c692401502ba92d978.tar.bz2
go-tangerine-c197d805f71ea45eaed7f8c692401502ba92d978.tar.lz
go-tangerine-c197d805f71ea45eaed7f8c692401502ba92d978.tar.xz
go-tangerine-c197d805f71ea45eaed7f8c692401502ba92d978.tar.zst
go-tangerine-c197d805f71ea45eaed7f8c692401502ba92d978.zip
ethereum: fix typos in interfaces.go (#15149)
Diffstat (limited to 'interfaces.go')
-rw-r--r--interfaces.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/interfaces.go b/interfaces.go
index 744f07b95..67f236ef7 100644
--- a/interfaces.go
+++ b/interfaces.go
@@ -102,7 +102,7 @@ type SyncProgress struct {
CurrentBlock uint64 // Current block number where sync is at
HighestBlock uint64 // Highest alleged block number in the chain
PulledStates uint64 // Number of state trie entries already downloaded
- KnownStates uint64 // Total number os state trie entries known about
+ KnownStates uint64 // Total number of state trie entries known about
}
// ChainSyncReader wraps access to the node's current sync status. If there's no
@@ -129,7 +129,7 @@ type ContractCaller interface {
CallContract(ctx context.Context, call CallMsg, blockNumber *big.Int) ([]byte, error)
}
-// FilterQuery contains options for contact log filtering.
+// FilterQuery contains options for contract log filtering.
type FilterQuery struct {
FromBlock *big.Int // beginning of the queried range, nil means genesis block
ToBlock *big.Int // end of the range, nil means latest block