Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/blockchain/ethereum/diaSio2OracleService/go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module github.com/diadata-org/diadata/blockchain/diaSio2OracleService

go 1.14
go 1.22

require (
github.com/diadata-org/diadata v1.4.1-rc-315
github.com/diadata-org/diadata v1.4.622
github.com/ethereum/go-ethereum v1.10.10
github.com/machinebox/graphql v0.2.2
github.com/matryer/is v1.4.1 // indirect
Expand Down
2 changes: 1 addition & 1 deletion cmd/blockchain/ethereum/diaSio2OracleService/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ func getNAstrGraphqlAssetQuotationFromDia(blockchain, address string, windowSize

// Get times for start/end
currentTime := time.Now()
starttime := currentTime.Add(time.Duration(-windowSize*2) * time.Second)
starttime := currentTime.Add(time.Duration(-windowSize) * time.Second)

type Response struct {
GetFeed []struct {
Expand Down
Loading