Skip to content

Commit

Permalink
ethereum: fix typos in interfaces.go (ethereum#15149)
Browse files Browse the repository at this point in the history
  • Loading branch information
wraith7 authored and fjl committed Sep 15, 2017
1 parent 5705ad0 commit c197d80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interfaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit c197d80

Please sign in to comment.