ceeaa0f8d3
- Verify license added to each file - Order imports by group and separate with line breaks
63 lines
2.0 KiB
Go
63 lines
2.0 KiB
Go
// Copyright 2018 Vulcanize
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package stability_fee
|
|
|
|
import (
|
|
"github.com/vulcanize/vulcanizedb/pkg/core"
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres"
|
|
)
|
|
|
|
type Repository interface {
|
|
Create(headerID int64, model PitFileStabilityFeeModel) error
|
|
MissingHeaders(startingBlockNumber, endingBlockNumber int64) ([]core.Header, error)
|
|
}
|
|
|
|
type PitFileStabilityFeeRepository struct {
|
|
db *postgres.DB
|
|
}
|
|
|
|
func NewPitFileStabilityFeeRepository(db *postgres.DB) PitFileStabilityFeeRepository {
|
|
return PitFileStabilityFeeRepository{
|
|
db: db,
|
|
}
|
|
}
|
|
|
|
func (repository PitFileStabilityFeeRepository) Create(headerID int64, model PitFileStabilityFeeModel) error {
|
|
_, err := repository.db.Exec(
|
|
`INSERT into maker.pit_file_stability_fee (header_id, what, data, tx_idx, raw_log)
|
|
VALUES($1, $2, $3, $4, $5)`,
|
|
headerID, model.What, model.Data, model.TransactionIndex, model.Raw,
|
|
)
|
|
return err
|
|
}
|
|
|
|
func (repository PitFileStabilityFeeRepository) MissingHeaders(startingBlockNumber, endingBlockNumber int64) ([]core.Header, error) {
|
|
var result []core.Header
|
|
err := repository.db.Select(
|
|
&result,
|
|
`SELECT headers.id, headers.block_number FROM headers
|
|
LEFT JOIN maker.pit_file_stability_fee on headers.id = header_id
|
|
WHERE header_id ISNULL
|
|
AND headers.block_number >= $1
|
|
AND headers.block_number <= $2
|
|
AND headers.eth_node_fingerprint = $3`,
|
|
startingBlockNumber,
|
|
endingBlockNumber,
|
|
repository.db.Node.ID,
|
|
)
|
|
|
|
return result, err
|
|
}
|