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

* Added option to choose from address in kaspawallet + fixed a bug with 0 change * Checking if From is missing * Fixed after merge to kaspad0.12 * Applying changes also to send command * Better help description * Fixed bug where we take all utxos except the one we wanted * Swallow the parsing error only when we want to filter * checking for wallet address directly * go fmt * Changing to `--from-address` Co-authored-by: Ori Newman <orinewman1@gmail.com>
33 lines
1.1 KiB
Modula-2
33 lines
1.1 KiB
Modula-2
module github.com/kaspanet/kaspad
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/btcsuite/btcutil v1.0.2
|
|
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd
|
|
github.com/btcsuite/winsvc v1.0.0
|
|
github.com/davecgh/go-spew v1.1.1
|
|
github.com/golang/protobuf v1.5.2
|
|
github.com/jessevdk/go-flags v1.4.0
|
|
github.com/jrick/logrotate v1.0.0
|
|
github.com/kaspanet/go-muhash v0.0.4
|
|
github.com/kaspanet/go-secp256k1 v0.0.7
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d
|
|
github.com/tyler-smith/go-bip39 v1.1.0
|
|
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a
|
|
golang.org/x/exp v0.0.0-20220414153411-bcd21879b8fd
|
|
golang.org/x/term v0.0.0-20210503060354-a79de5458b56
|
|
google.golang.org/grpc v1.38.0
|
|
google.golang.org/protobuf v1.27.1
|
|
)
|
|
|
|
require (
|
|
github.com/golang/snappy v0.0.1 // indirect
|
|
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect
|
|
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654 // indirect
|
|
golang.org/x/text v0.3.5 // indirect
|
|
google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08 // indirect
|
|
gopkg.in/yaml.v2 v2.3.0 // indirect
|
|
)
|