mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-03-30 15:08:33 +00:00

* [NOD-350] Implement testnet faucet * [NOD-350] Add JSON annotations to api server response types * [NOD-350] Fix IP check query, update IP usage with upsert, and make IP a primary key * [NOD-377] Remove redundant float conversion * [NOD-377] Change not current database error message * [NOD-377] change API route from /money_request to /request_money * [NOD-377] Add a constant for 24 hours * [NOD-377] Remove redundant call for getWalletUTXOSet() * [NOD-377] Condition refactoring * [NOD-377] Fix POST request to API server content type * [NOD-350] Rename day -> timeBetweenRequests * [NOD-377] Rename timeBetweenRequests -> minRequestInterval, timeBefore24Hours -> minRequestInterval * [NOD-350] Rename file responsetypes -> response_types * [NOD-350] Rename convertTxModelToTxResponse -> convertTxDBModelToTxResponse * [NOD-350] Explicitly select blue_score in fetchSelectedTipBlueScore * [NOD-350] Refactor and add comments * [NOD-350] Make calcFee use MassPerTxByte * [NOD-350] Convert IP column to varchar(39) to allow ipv6 addresses * [NOD-350] Add comments to isFundedAndIsChangeOutputRequired * [NOD-350] Remove approximateConfirmationsForCoinbaseMaturity * [NOD-350] Fix comments
25 lines
776 B
Modula-2
25 lines
776 B
Modula-2
module github.com/daglabs/btcd
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
bou.ke/monkey v1.0.1
|
|
github.com/aead/siphash v1.0.1
|
|
github.com/aws/aws-lambda-go v1.13.2
|
|
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd
|
|
github.com/btcsuite/goleveldb v1.0.0
|
|
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792
|
|
github.com/btcsuite/winsvc v1.0.0
|
|
github.com/davecgh/go-spew v1.1.1
|
|
github.com/golang-migrate/migrate/v4 v4.6.1
|
|
github.com/gorilla/handlers v1.4.2
|
|
github.com/gorilla/mux v1.7.1
|
|
github.com/jessevdk/go-flags v1.4.0
|
|
github.com/jinzhu/gorm v1.9.10
|
|
github.com/jrick/logrotate v1.0.0
|
|
github.com/kkdai/bstream v0.0.0-20181106074824-b3251f7901ec
|
|
github.com/miekg/dns v1.1.6
|
|
github.com/pkg/errors v0.8.1
|
|
golang.org/x/crypto v0.0.0-20190426145343-a29dc8fdc734
|
|
)
|