mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-21 22:36:42 +00:00

* Add GetUTXOsByBalances command to rpc * Fix wrong commands in GetBalanceByAddress * Moved calculation of TransactionMass out of TransactionValidator, so t that it can be used in kaspawallet * Allow CreateUnsignedTransaction to return multiple transactions * Start working on split * Implement maybeSplitTransactionInner * estimateMassIncreaseForSignatures should multiply by the number of inputs * Implement createSplitTransaction * Implement mergeTransactions * Broadcast all transaction, not only 1 * workaround missing UTXOEntry in partially signed transaction * Bugfix in broadcast loop * Add underscores in some constants * Make all nets RelayNonStdTxs: false * Change estimateMassIncreaseForSignatures to estimateMassAfterSignatures * Allow situations where merge transaction doesn't have enough funds to pay fees * Add comments * A few of renames * Handle missed errors * Fix clone of PubKeySignaturePair to properly clone nil signatures * Add sanity check to make sure originalTransaction has exactly two outputs * Re-use change address for splitAddress * Add one more utxo if the total amount is smaller then what we need to send due to fees * Fix off-by-1 error in splitTrasnaction * Add a comment to maybeAutoCompoundTransaction * Add comment on why we are increasing inputCountPerSplit * Add comment explaining while originalTransaction has 1 or 2 outputs * Move oneMoreUTXOForMergeTransaction to split_transaction.go * Allow to add multiple utxos to pay fee for mergeTransactions, if needed * calculate split input counts and sizes properly * Allow multiple transactions inside the create-unsigned-transaction -> sign -> broadcast workflow * Print the number of transaction which was sent, in case there were multiple * Rename broadcastConfig.Transaction(File) to Transactions(File) * Convert alreadySelectedUTXOs to a map * Fix a typo * Add comment explaining that we assume all inputs are the same * Revert over-refactor of rename of config.Transaction -> config.Transactions * Rename: inputPerSplitCount -> inputsPerSplitCount * Add comment for splitAndInputPerSplitCounts * Use createSplitTransaction to calculate the upper bound of mass for split transactions
121 lines
2.9 KiB
Go
121 lines
2.9 KiB
Go
package server
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"os"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/kaspanet/kaspad/util/txmass"
|
|
|
|
"github.com/kaspanet/kaspad/util/profiling"
|
|
|
|
"github.com/kaspanet/kaspad/cmd/kaspawallet/daemon/pb"
|
|
"github.com/kaspanet/kaspad/cmd/kaspawallet/keys"
|
|
"github.com/kaspanet/kaspad/domain/dagconfig"
|
|
"github.com/kaspanet/kaspad/infrastructure/network/rpcclient"
|
|
"github.com/kaspanet/kaspad/infrastructure/os/signal"
|
|
"github.com/kaspanet/kaspad/util/panics"
|
|
"github.com/pkg/errors"
|
|
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
type server struct {
|
|
pb.UnimplementedKaspawalletdServer
|
|
|
|
rpcClient *rpcclient.RPCClient
|
|
params *dagconfig.Params
|
|
|
|
lock sync.RWMutex
|
|
utxosSortedByAmount []*walletUTXO
|
|
nextSyncStartIndex uint32
|
|
keysFile *keys.File
|
|
shutdown chan struct{}
|
|
addressSet walletAddressSet
|
|
txMassCalculator *txmass.Calculator
|
|
}
|
|
|
|
// Start starts the kaspawalletd server
|
|
func Start(params *dagconfig.Params, listen, rpcServer string, keysFilePath string, profile string) error {
|
|
initLog(defaultLogFile, defaultErrLogFile)
|
|
|
|
defer panics.HandlePanic(log, "MAIN", nil)
|
|
interrupt := signal.InterruptListener()
|
|
|
|
if profile != "" {
|
|
profiling.Start(profile, log)
|
|
}
|
|
|
|
listener, err := net.Listen("tcp", listen)
|
|
if err != nil {
|
|
return (errors.Wrapf(err, "Error listening to tcp at %s", listen))
|
|
}
|
|
log.Infof("Listening on %s", listen)
|
|
|
|
rpcClient, err := connectToRPC(params, rpcServer)
|
|
if err != nil {
|
|
return (errors.Wrapf(err, "Error connecting to RPC server %s", rpcServer))
|
|
}
|
|
|
|
keysFile, err := keys.ReadKeysFile(params, keysFilePath)
|
|
if err != nil {
|
|
return (errors.Wrapf(err, "Error connecting to RPC server %s", rpcServer))
|
|
}
|
|
|
|
serverInstance := &server{
|
|
rpcClient: rpcClient,
|
|
params: params,
|
|
utxosSortedByAmount: []*walletUTXO{},
|
|
nextSyncStartIndex: 0,
|
|
keysFile: keysFile,
|
|
shutdown: make(chan struct{}),
|
|
addressSet: make(walletAddressSet),
|
|
txMassCalculator: txmass.NewCalculator(params.MassPerTxByte, params.MassPerScriptPubKeyByte, params.MassPerSigOp),
|
|
}
|
|
|
|
spawn("serverInstance.sync", func() {
|
|
err := serverInstance.sync()
|
|
if err != nil {
|
|
printErrorAndExit(errors.Wrap(err, "error syncing the wallet"))
|
|
}
|
|
})
|
|
|
|
grpcServer := grpc.NewServer()
|
|
pb.RegisterKaspawalletdServer(grpcServer, serverInstance)
|
|
|
|
spawn("grpcServer.Serve", func() {
|
|
err := grpcServer.Serve(listener)
|
|
if err != nil {
|
|
printErrorAndExit(errors.Wrap(err, "Error serving gRPC"))
|
|
}
|
|
})
|
|
|
|
select {
|
|
case <-serverInstance.shutdown:
|
|
case <-interrupt:
|
|
const stopTimeout = 2 * time.Second
|
|
|
|
stopChan := make(chan interface{})
|
|
spawn("gRPCServer.Stop", func() {
|
|
grpcServer.GracefulStop()
|
|
close(stopChan)
|
|
})
|
|
|
|
select {
|
|
case <-stopChan:
|
|
case <-time.After(stopTimeout):
|
|
log.Warnf("Could not gracefully stop: timed out after %s", stopTimeout)
|
|
grpcServer.Stop()
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func printErrorAndExit(err error) {
|
|
fmt.Fprintf(os.Stderr, "%+v\n", err)
|
|
os.Exit(1)
|
|
}
|