Commit f1ce5877 authored by Jason Carver's avatar Jason Carver

do not export ring buffer struct

parent 8a7fb5fd
...@@ -40,7 +40,7 @@ type Agent interface { ...@@ -40,7 +40,7 @@ type Agent interface {
const miningLogAtDepth = 5 const miningLogAtDepth = 5
type UInt64RingBuffer struct { type uint64RingBuffer struct {
ints []uint64 //array of all integers in buffer ints []uint64 //array of all integers in buffer
next int //where is the next insertion? assert 0 <= next < len(ints) next int //where is the next insertion? assert 0 <= next < len(ints)
} }
...@@ -61,7 +61,7 @@ type environment struct { ...@@ -61,7 +61,7 @@ type environment struct {
lowGasTransactors *set.Set lowGasTransactors *set.Set
ownedAccounts *set.Set ownedAccounts *set.Set
lowGasTxs types.Transactions lowGasTxs types.Transactions
localMinedBlocks *UInt64RingBuffer // the most recent block numbers that were mined locally (used to check block inclusion) localMinedBlocks *uint64RingBuffer // the most recent block numbers that were mined locally (used to check block inclusion)
} }
// env returns a new environment for the current cycle // env returns a new environment for the current cycle
...@@ -217,9 +217,9 @@ out: ...@@ -217,9 +217,9 @@ out:
events.Unsubscribe() events.Unsubscribe()
} }
func newLocalMinedBlock(blockNumber uint64, prevMinedBlocks *UInt64RingBuffer) (minedBlocks *UInt64RingBuffer) { func newLocalMinedBlock(blockNumber uint64, prevMinedBlocks *uint64RingBuffer) (minedBlocks *uint64RingBuffer) {
if prevMinedBlocks == nil { if prevMinedBlocks == nil {
minedBlocks = &UInt64RingBuffer{next: 0, ints: make([]uint64, miningLogAtDepth)} minedBlocks = &uint64RingBuffer{next: 0, ints: make([]uint64, miningLogAtDepth)}
} else { } else {
minedBlocks = prevMinedBlocks minedBlocks = prevMinedBlocks
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment