diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7084bf4e3..e995770b7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,7 +5,7 @@ Any contribution to Kaspad is very welcome. ## Getting started If you want to start contributing to Kaspad and don't know where to start, you can pick an issue from -the [list](https://github.com/c4ei/YunSeokYeol/issues). +the [list](https://github.com/c4ei/yunseokyeol/issues). If you want to make a big change it's better to discuss it first by opening an issue or talk about it in [Discord](https://discord.gg/WmGhhzk) to avoid duplicate work. diff --git a/README.md b/README.md index aedc1b6fd..4c5e84a67 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Join our discord server using the following link: https://discord.gg/YNYnNN5Pf2 ## Issue Tracker -The [integrated github issue tracker](https://github.com/c4ei/YunSeokYeol/issues) +The [integrated github issue tracker](https://github.com/c4ei/yunseokyeol/issues) is used for this project. Issue priorities may be seen at https://github.com/orgs/kaspanet/projects/4 diff --git a/app/app.go b/app/app.go index e64e5eb1e..7d740afe8 100644 --- a/app/app.go +++ b/app/app.go @@ -7,17 +7,17 @@ import ( "runtime" "time" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database/ldb" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/infrastructure/os/execenv" - "github.com/c4ei/YunSeokYeol/infrastructure/os/limits" - "github.com/c4ei/YunSeokYeol/infrastructure/os/signal" - "github.com/c4ei/YunSeokYeol/infrastructure/os/winservice" - "github.com/c4ei/YunSeokYeol/util/panics" - "github.com/c4ei/YunSeokYeol/util/profiling" - "github.com/c4ei/YunSeokYeol/version" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/db/database/ldb" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/os/execenv" + "github.com/c4ei/yunseokyeol/infrastructure/os/limits" + "github.com/c4ei/yunseokyeol/infrastructure/os/signal" + "github.com/c4ei/yunseokyeol/infrastructure/os/winservice" + "github.com/c4ei/yunseokyeol/util/panics" + "github.com/c4ei/yunseokyeol/util/profiling" + "github.com/c4ei/yunseokyeol/version" ) const ( diff --git a/app/appmessage/README.md b/app/appmessage/README.md index f78e75360..b4fb112a7 100644 --- a/app/appmessage/README.md +++ b/app/appmessage/README.md @@ -2,7 +2,7 @@ wire ==== [![ISC License](http://img.shields.io/badge/license-ISC-blue.svg)](https://choosealicense.com/licenses/isc/) -[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](http://godoc.org/github.com/c4ei/YunSeokYeol/wire) +[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](http://godoc.org/github.com/c4ei/yunseokyeol/wire) ======= Package wire implements the kaspa wire protocol. diff --git a/app/appmessage/common_test.go b/app/appmessage/common_test.go index 1651273b9..b44d634b3 100644 --- a/app/appmessage/common_test.go +++ b/app/appmessage/common_test.go @@ -1,6 +1,6 @@ package appmessage -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // mainnetGenesisHash is the hash of the first block in the block DAG for the // main network (genesis block). diff --git a/app/appmessage/domainconverters.go b/app/appmessage/domainconverters.go index 9456f1b33..2fc6e8dfb 100644 --- a/app/appmessage/domainconverters.go +++ b/app/appmessage/domainconverters.go @@ -6,14 +6,14 @@ import ( "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/blockheader" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashes" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/blockheader" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashes" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionid" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionid" + "github.com/c4ei/yunseokyeol/util/mstime" ) // DomainBlockToMsgBlock converts an externalapi.DomainBlock to MsgBlock diff --git a/app/appmessage/p2p_msgblock.go b/app/appmessage/p2p_msgblock.go index 25e233137..128386ab1 100644 --- a/app/appmessage/p2p_msgblock.go +++ b/app/appmessage/p2p_msgblock.go @@ -5,7 +5,7 @@ package appmessage import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // defaultTransactionAlloc is the default size used for the backing array diff --git a/app/appmessage/p2p_msgblock_test.go b/app/appmessage/p2p_msgblock_test.go index ec13d3b9f..36ac2827b 100644 --- a/app/appmessage/p2p_msgblock_test.go +++ b/app/appmessage/p2p_msgblock_test.go @@ -9,12 +9,12 @@ import ( "reflect" "testing" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/util/mstime" "github.com/davecgh/go-spew/spew" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // TestBlock tests the MsgBlock API. diff --git a/app/appmessage/p2p_msgblockheader.go b/app/appmessage/p2p_msgblockheader.go index c85a5da16..2c8631a15 100644 --- a/app/appmessage/p2p_msgblockheader.go +++ b/app/appmessage/p2p_msgblockheader.go @@ -7,10 +7,10 @@ package appmessage import ( "math/big" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/util/mstime" ) // BaseBlockHeaderPayload is the base number of bytes a block header can be, diff --git a/app/appmessage/p2p_msgblockheader_test.go b/app/appmessage/p2p_msgblockheader_test.go index 060aaf79b..66bc1adf5 100644 --- a/app/appmessage/p2p_msgblockheader_test.go +++ b/app/appmessage/p2p_msgblockheader_test.go @@ -9,7 +9,7 @@ import ( "reflect" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/davecgh/go-spew/spew" ) diff --git a/app/appmessage/p2p_msgblocklocator.go b/app/appmessage/p2p_msgblocklocator.go index 4756904d1..075ec2238 100644 --- a/app/appmessage/p2p_msgblocklocator.go +++ b/app/appmessage/p2p_msgblocklocator.go @@ -1,7 +1,7 @@ package appmessage import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // MaxBlockLocatorsPerMsg is the maximum number of block locator hashes allowed diff --git a/app/appmessage/p2p_msgblocklocator_test.go b/app/appmessage/p2p_msgblocklocator_test.go index 92caf9e4b..ca50acac3 100644 --- a/app/appmessage/p2p_msgblocklocator_test.go +++ b/app/appmessage/p2p_msgblocklocator_test.go @@ -3,7 +3,7 @@ package appmessage import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/davecgh/go-spew/spew" ) diff --git a/app/appmessage/p2p_msgblockwithtrusteddata.go b/app/appmessage/p2p_msgblockwithtrusteddata.go index 891a2b70e..cb4775044 100644 --- a/app/appmessage/p2p_msgblockwithtrusteddata.go +++ b/app/appmessage/p2p_msgblockwithtrusteddata.go @@ -3,7 +3,7 @@ package appmessage import ( "math/big" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // MsgBlockWithTrustedData represents a kaspa BlockWithTrustedData message diff --git a/app/appmessage/p2p_msgibdblocklocator.go b/app/appmessage/p2p_msgibdblocklocator.go index 02215580e..06e42a87e 100644 --- a/app/appmessage/p2p_msgibdblocklocator.go +++ b/app/appmessage/p2p_msgibdblocklocator.go @@ -1,7 +1,7 @@ package appmessage import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // MsgIBDBlockLocator represents a kaspa ibdBlockLocator message diff --git a/app/appmessage/p2p_msgibdblocklocatorhighesthash.go b/app/appmessage/p2p_msgibdblocklocatorhighesthash.go index ece589944..7236051b0 100644 --- a/app/appmessage/p2p_msgibdblocklocatorhighesthash.go +++ b/app/appmessage/p2p_msgibdblocklocatorhighesthash.go @@ -1,7 +1,7 @@ package appmessage import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // MsgIBDBlockLocatorHighestHash represents a kaspa BlockLocatorHighestHash message diff --git a/app/appmessage/p2p_msgibdchainblocklocator.go b/app/appmessage/p2p_msgibdchainblocklocator.go index ffb36c21f..c12f3c8fe 100644 --- a/app/appmessage/p2p_msgibdchainblocklocator.go +++ b/app/appmessage/p2p_msgibdchainblocklocator.go @@ -1,7 +1,7 @@ package appmessage import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // MsgIBDChainBlockLocator implements the Message interface and represents a kaspa diff --git a/app/appmessage/p2p_msginvrelayblock.go b/app/appmessage/p2p_msginvrelayblock.go index b01b445a0..7a58313d8 100644 --- a/app/appmessage/p2p_msginvrelayblock.go +++ b/app/appmessage/p2p_msginvrelayblock.go @@ -1,7 +1,7 @@ package appmessage import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // MsgInvRelayBlock implements the Message interface and represents a kaspa diff --git a/app/appmessage/p2p_msginvtransaction.go b/app/appmessage/p2p_msginvtransaction.go index 3cf34463f..b8cf75b0c 100644 --- a/app/appmessage/p2p_msginvtransaction.go +++ b/app/appmessage/p2p_msginvtransaction.go @@ -1,7 +1,7 @@ package appmessage import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // MaxInvPerTxInvMsg is the maximum number of hashes that can diff --git a/app/appmessage/p2p_msgpruningpointutxosetchunk.go b/app/appmessage/p2p_msgpruningpointutxosetchunk.go index 29fc61e20..fdbb76dcd 100644 --- a/app/appmessage/p2p_msgpruningpointutxosetchunk.go +++ b/app/appmessage/p2p_msgpruningpointutxosetchunk.go @@ -1,6 +1,6 @@ package appmessage -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // MsgPruningPointUTXOSetChunk represents a kaspa PruningPointUTXOSetChunk message type MsgPruningPointUTXOSetChunk struct { diff --git a/app/appmessage/p2p_msgrequestaddresses.go b/app/appmessage/p2p_msgrequestaddresses.go index 1ecbc4c5b..b7e726da8 100644 --- a/app/appmessage/p2p_msgrequestaddresses.go +++ b/app/appmessage/p2p_msgrequestaddresses.go @@ -5,7 +5,7 @@ package appmessage import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // MsgRequestAddresses implements the Message interface and represents a kaspa diff --git a/app/appmessage/p2p_msgrequestanticone.go b/app/appmessage/p2p_msgrequestanticone.go index 91ed75217..898f7a6bc 100644 --- a/app/appmessage/p2p_msgrequestanticone.go +++ b/app/appmessage/p2p_msgrequestanticone.go @@ -5,7 +5,7 @@ package appmessage import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // MsgRequestAnticone implements the Message interface and represents a kaspa diff --git a/app/appmessage/p2p_msgrequestblocklocator.go b/app/appmessage/p2p_msgrequestblocklocator.go index ddc19a5a2..e88d680a8 100644 --- a/app/appmessage/p2p_msgrequestblocklocator.go +++ b/app/appmessage/p2p_msgrequestblocklocator.go @@ -1,7 +1,7 @@ package appmessage import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // MsgRequestBlockLocator implements the Message interface and represents a kaspa diff --git a/app/appmessage/p2p_msgrequestblocklocator_test.go b/app/appmessage/p2p_msgrequestblocklocator_test.go index fce28fcbe..bcdb92c63 100644 --- a/app/appmessage/p2p_msgrequestblocklocator_test.go +++ b/app/appmessage/p2p_msgrequestblocklocator_test.go @@ -3,7 +3,7 @@ package appmessage import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // TestRequestBlockLocator tests the MsgRequestBlockLocator API. diff --git a/app/appmessage/p2p_msgrequestheaders.go b/app/appmessage/p2p_msgrequestheaders.go index d11381cb5..9d894445d 100644 --- a/app/appmessage/p2p_msgrequestheaders.go +++ b/app/appmessage/p2p_msgrequestheaders.go @@ -5,7 +5,7 @@ package appmessage import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // MsgRequestHeaders implements the Message interface and represents a kaspa diff --git a/app/appmessage/p2p_msgrequestheaders_test.go b/app/appmessage/p2p_msgrequestheaders_test.go index 58aec8e56..60d6088c9 100644 --- a/app/appmessage/p2p_msgrequestheaders_test.go +++ b/app/appmessage/p2p_msgrequestheaders_test.go @@ -7,7 +7,7 @@ package appmessage import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // TestRequstIBDBlocks tests the MsgRequestIBDBlocks API. diff --git a/app/appmessage/p2p_msgrequestibdblocks.go b/app/appmessage/p2p_msgrequestibdblocks.go index d1c88d96c..61af6e3dd 100644 --- a/app/appmessage/p2p_msgrequestibdblocks.go +++ b/app/appmessage/p2p_msgrequestibdblocks.go @@ -1,7 +1,7 @@ package appmessage import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // MsgRequestIBDBlocks implements the Message interface and represents a kaspa diff --git a/app/appmessage/p2p_msgrequestibdchainblocklocator.go b/app/appmessage/p2p_msgrequestibdchainblocklocator.go index 16754b1ac..599a160f9 100644 --- a/app/appmessage/p2p_msgrequestibdchainblocklocator.go +++ b/app/appmessage/p2p_msgrequestibdchainblocklocator.go @@ -1,7 +1,7 @@ package appmessage import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // MsgRequestIBDChainBlockLocator implements the Message interface and represents a kaspa diff --git a/app/appmessage/p2p_msgrequestpruningpointutxosetandblock.go b/app/appmessage/p2p_msgrequestpruningpointutxosetandblock.go index 451bf813a..23284b2a1 100644 --- a/app/appmessage/p2p_msgrequestpruningpointutxosetandblock.go +++ b/app/appmessage/p2p_msgrequestpruningpointutxosetandblock.go @@ -1,7 +1,7 @@ package appmessage import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // MsgRequestPruningPointUTXOSet represents a kaspa RequestPruningPointUTXOSet message diff --git a/app/appmessage/p2p_msgrequestrelayblocks.go b/app/appmessage/p2p_msgrequestrelayblocks.go index 7abc40b6b..8f37b334b 100644 --- a/app/appmessage/p2p_msgrequestrelayblocks.go +++ b/app/appmessage/p2p_msgrequestrelayblocks.go @@ -1,7 +1,7 @@ package appmessage import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // MaxRequestRelayBlocksHashes is the maximum number of hashes that can diff --git a/app/appmessage/p2p_msgrequesttransactions.go b/app/appmessage/p2p_msgrequesttransactions.go index 4e163c224..0be32c5b8 100644 --- a/app/appmessage/p2p_msgrequesttransactions.go +++ b/app/appmessage/p2p_msgrequesttransactions.go @@ -1,7 +1,7 @@ package appmessage import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // MaxInvPerRequestTransactionsMsg is the maximum number of hashes that can diff --git a/app/appmessage/p2p_msgtransactionnotfound.go b/app/appmessage/p2p_msgtransactionnotfound.go index 1355c117a..28975f095 100644 --- a/app/appmessage/p2p_msgtransactionnotfound.go +++ b/app/appmessage/p2p_msgtransactionnotfound.go @@ -5,7 +5,7 @@ package appmessage import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // MsgTransactionNotFound defines a kaspa TransactionNotFound message which is sent in response to diff --git a/app/appmessage/p2p_msgtx.go b/app/appmessage/p2p_msgtx.go index 66ed5d988..23c230793 100644 --- a/app/appmessage/p2p_msgtx.go +++ b/app/appmessage/p2p_msgtx.go @@ -8,11 +8,11 @@ import ( "encoding/binary" "strconv" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) const ( diff --git a/app/appmessage/p2p_msgtx_test.go b/app/appmessage/p2p_msgtx_test.go index 8404302fd..60f729620 100644 --- a/app/appmessage/p2p_msgtx_test.go +++ b/app/appmessage/p2p_msgtx_test.go @@ -11,12 +11,12 @@ import ( "reflect" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionid" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionid" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/davecgh/go-spew/spew" ) diff --git a/app/appmessage/p2p_msgversion.go b/app/appmessage/p2p_msgversion.go index 56a9c6f09..b33a63aca 100644 --- a/app/appmessage/p2p_msgversion.go +++ b/app/appmessage/p2p_msgversion.go @@ -8,11 +8,11 @@ import ( "fmt" "strings" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/version" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/version" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/id" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/id" + "github.com/c4ei/yunseokyeol/util/mstime" ) // MaxUserAgentLen is the maximum allowed length for the user agent field in a diff --git a/app/appmessage/p2p_msgversion_test.go b/app/appmessage/p2p_msgversion_test.go index 6c964d728..b109c6199 100644 --- a/app/appmessage/p2p_msgversion_test.go +++ b/app/appmessage/p2p_msgversion_test.go @@ -9,7 +9,7 @@ import ( "reflect" "testing" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/id" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/id" "github.com/davecgh/go-spew/spew" ) diff --git a/app/appmessage/p2p_netaddress.go b/app/appmessage/p2p_netaddress.go index 9fc0da2f3..afb445987 100644 --- a/app/appmessage/p2p_netaddress.go +++ b/app/appmessage/p2p_netaddress.go @@ -7,7 +7,7 @@ package appmessage import ( "net" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/util/mstime" ) // NetAddress defines information about a peer on the network including the time diff --git a/app/appmessage/rpc_get_block_count.go b/app/appmessage/rpc_get_block_count.go index cdc2af4fd..84b107055 100644 --- a/app/appmessage/rpc_get_block_count.go +++ b/app/appmessage/rpc_get_block_count.go @@ -1,6 +1,6 @@ package appmessage -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // GetBlockCountRequestMessage is an appmessage corresponding to // its respective RPC message diff --git a/app/component_manager.go b/app/component_manager.go index ba47d9397..5b1a0b7bc 100644 --- a/app/component_manager.go +++ b/app/component_manager.go @@ -4,22 +4,22 @@ import ( "fmt" "sync/atomic" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/miningmanager/mempool" + "github.com/c4ei/yunseokyeol/domain/miningmanager/mempool" - "github.com/c4ei/YunSeokYeol/app/protocol" - "github.com/c4ei/YunSeokYeol/app/rpc" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/utxoindex" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - infrastructuredatabase "github.com/c4ei/YunSeokYeol/infrastructure/db/database" - "github.com/c4ei/YunSeokYeol/infrastructure/network/addressmanager" - "github.com/c4ei/YunSeokYeol/infrastructure/network/connmanager" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/id" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/app/protocol" + "github.com/c4ei/yunseokyeol/app/rpc" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/utxoindex" + "github.com/c4ei/yunseokyeol/infrastructure/config" + infrastructuredatabase "github.com/c4ei/yunseokyeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/network/addressmanager" + "github.com/c4ei/yunseokyeol/infrastructure/network/connmanager" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/id" + "github.com/c4ei/yunseokyeol/util/panics" ) // ComponentManager is a wrapper for all the kaspad services diff --git a/app/log.go b/app/log.go index 9874780dc..7fc2671e5 100644 --- a/app/log.go +++ b/app/log.go @@ -6,7 +6,7 @@ package app import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("KASD") diff --git a/app/protocol/common/common.go b/app/protocol/common/common.go index c0ec9c81a..c45c4c432 100644 --- a/app/protocol/common/common.go +++ b/app/protocol/common/common.go @@ -3,8 +3,8 @@ package common import ( "time" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - routerpkg "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + routerpkg "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/app/protocol/flowcontext/addresses.go b/app/protocol/flowcontext/addresses.go index fbd595b05..5b34349ef 100644 --- a/app/protocol/flowcontext/addresses.go +++ b/app/protocol/flowcontext/addresses.go @@ -1,7 +1,7 @@ package flowcontext import ( - "github.com/c4ei/YunSeokYeol/infrastructure/network/addressmanager" + "github.com/c4ei/yunseokyeol/infrastructure/network/addressmanager" ) // AddressManager returns the address manager associated to the flow context. diff --git a/app/protocol/flowcontext/blocks.go b/app/protocol/flowcontext/blocks.go index d994f8dbf..9d64be068 100644 --- a/app/protocol/flowcontext/blocks.go +++ b/app/protocol/flowcontext/blocks.go @@ -3,14 +3,14 @@ package flowcontext import ( "time" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" ) // OnNewBlock updates the mempool after a new block arrival, and diff --git a/app/protocol/flowcontext/config.go b/app/protocol/flowcontext/config.go index 52384a863..a9abe4cb3 100644 --- a/app/protocol/flowcontext/config.go +++ b/app/protocol/flowcontext/config.go @@ -1,6 +1,6 @@ package flowcontext -import "github.com/c4ei/YunSeokYeol/infrastructure/config" +import "github.com/c4ei/yunseokyeol/infrastructure/config" // Config returns an instance of *config.Config associated to the flow context. func (f *FlowContext) Config() *config.Config { diff --git a/app/protocol/flowcontext/domain.go b/app/protocol/flowcontext/domain.go index 6756c171c..e3c59a1dd 100644 --- a/app/protocol/flowcontext/domain.go +++ b/app/protocol/flowcontext/domain.go @@ -1,7 +1,7 @@ package flowcontext import ( - "github.com/c4ei/YunSeokYeol/domain" + "github.com/c4ei/yunseokyeol/domain" ) // Domain returns the Domain object associated to the flow context. diff --git a/app/protocol/flowcontext/errors.go b/app/protocol/flowcontext/errors.go index 85152918e..1447bbbfc 100644 --- a/app/protocol/flowcontext/errors.go +++ b/app/protocol/flowcontext/errors.go @@ -5,9 +5,9 @@ import ( "strings" "sync/atomic" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" ) var ( diff --git a/app/protocol/flowcontext/flow_context.go b/app/protocol/flowcontext/flow_context.go index 6e06cd4f3..44b4d8082 100644 --- a/app/protocol/flowcontext/flow_context.go +++ b/app/protocol/flowcontext/flow_context.go @@ -4,18 +4,18 @@ import ( "sync" "time" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/util/mstime" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain" + "github.com/c4ei/yunseokyeol/domain" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/network/addressmanager" - "github.com/c4ei/YunSeokYeol/infrastructure/network/connmanager" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/id" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/network/addressmanager" + "github.com/c4ei/yunseokyeol/infrastructure/network/connmanager" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/id" ) // OnNewBlockTemplateHandler is a handler function that's triggered when a new block template is available diff --git a/app/protocol/flowcontext/log.go b/app/protocol/flowcontext/log.go index c3f708f8e..3fb456c99 100644 --- a/app/protocol/flowcontext/log.go +++ b/app/protocol/flowcontext/log.go @@ -1,7 +1,7 @@ package flowcontext import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("PROT") diff --git a/app/protocol/flowcontext/network.go b/app/protocol/flowcontext/network.go index caa1ab158..3cd159d7c 100644 --- a/app/protocol/flowcontext/network.go +++ b/app/protocol/flowcontext/network.go @@ -1,11 +1,11 @@ package flowcontext import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/common" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/infrastructure/network/connmanager" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/common" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/infrastructure/network/connmanager" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter" "github.com/pkg/errors" ) diff --git a/app/protocol/flowcontext/orphans.go b/app/protocol/flowcontext/orphans.go index 95e7b8527..4c7652910 100644 --- a/app/protocol/flowcontext/orphans.go +++ b/app/protocol/flowcontext/orphans.go @@ -1,11 +1,11 @@ package flowcontext import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashset" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashset" + "github.com/c4ei/yunseokyeol/infrastructure/logger" "github.com/pkg/errors" ) diff --git a/app/protocol/flowcontext/shared_requested_blocks.go b/app/protocol/flowcontext/shared_requested_blocks.go index 32f8cb1af..de6b01016 100644 --- a/app/protocol/flowcontext/shared_requested_blocks.go +++ b/app/protocol/flowcontext/shared_requested_blocks.go @@ -3,7 +3,7 @@ package flowcontext import ( "sync" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // SharedRequestedBlocks is a data structure that is shared between peers that diff --git a/app/protocol/flowcontext/shared_requested_transactions.go b/app/protocol/flowcontext/shared_requested_transactions.go index 1bb3494dc..80d007c6e 100644 --- a/app/protocol/flowcontext/shared_requested_transactions.go +++ b/app/protocol/flowcontext/shared_requested_transactions.go @@ -3,7 +3,7 @@ package flowcontext import ( "sync" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // SharedRequestedTransactions is a data structure that is shared between peers that diff --git a/app/protocol/flowcontext/transactions.go b/app/protocol/flowcontext/transactions.go index b600e761a..f6be36e96 100644 --- a/app/protocol/flowcontext/transactions.go +++ b/app/protocol/flowcontext/transactions.go @@ -3,9 +3,9 @@ package flowcontext import ( "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" ) // TransactionIDPropagationInterval is the interval between transaction IDs propagations diff --git a/app/protocol/flows/handshake/handshake.go b/app/protocol/flows/handshake/handshake.go index af083369c..869a4efe1 100644 --- a/app/protocol/flows/handshake/handshake.go +++ b/app/protocol/flows/handshake/handshake.go @@ -3,18 +3,18 @@ package handshake import ( "sync/atomic" - "github.com/c4ei/YunSeokYeol/domain" + "github.com/c4ei/yunseokyeol/domain" - "github.com/c4ei/YunSeokYeol/app/protocol/common" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/infrastructure/network/addressmanager" + "github.com/c4ei/yunseokyeol/app/protocol/common" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/infrastructure/network/addressmanager" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter" - "github.com/c4ei/YunSeokYeol/app/appmessage" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - routerpkg "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + routerpkg "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/app/protocol/flows/handshake/log.go b/app/protocol/flows/handshake/log.go index 8cac31b4e..497e7fbc7 100644 --- a/app/protocol/flows/handshake/log.go +++ b/app/protocol/flows/handshake/log.go @@ -1,8 +1,8 @@ package handshake import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var log = logger.RegisterSubSystem("PROT") diff --git a/app/protocol/flows/handshake/receiveversion.go b/app/protocol/flows/handshake/receiveversion.go index 33cdbe985..657958b55 100644 --- a/app/protocol/flows/handshake/receiveversion.go +++ b/app/protocol/flows/handshake/receiveversion.go @@ -1,12 +1,12 @@ package handshake import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/common" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/common" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/app/protocol/flows/handshake/sendversion.go b/app/protocol/flows/handshake/sendversion.go index c8945b2d9..101add691 100644 --- a/app/protocol/flows/handshake/sendversion.go +++ b/app/protocol/flows/handshake/sendversion.go @@ -1,12 +1,12 @@ package handshake import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/common" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" - "github.com/c4ei/YunSeokYeol/version" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/common" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/version" "github.com/pkg/errors" ) diff --git a/app/protocol/flows/ready/log.go b/app/protocol/flows/ready/log.go index a41c15bb7..a34786f2c 100644 --- a/app/protocol/flows/ready/log.go +++ b/app/protocol/flows/ready/log.go @@ -1,8 +1,8 @@ package ready import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var log = logger.RegisterSubSystem("PROT") diff --git a/app/protocol/flows/ready/ready.go b/app/protocol/flows/ready/ready.go index ae40107bd..ee890fc1b 100644 --- a/app/protocol/flows/ready/ready.go +++ b/app/protocol/flows/ready/ready.go @@ -3,12 +3,12 @@ package ready import ( "sync/atomic" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/common" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/common" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - routerpkg "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + routerpkg "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/app/protocol/flows/v5/addressexchange/receiveaddresses.go b/app/protocol/flows/v5/addressexchange/receiveaddresses.go index 00b38a5a9..c7b4e1440 100644 --- a/app/protocol/flows/v5/addressexchange/receiveaddresses.go +++ b/app/protocol/flows/v5/addressexchange/receiveaddresses.go @@ -1,12 +1,12 @@ package addressexchange import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/common" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/infrastructure/network/addressmanager" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/common" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/infrastructure/network/addressmanager" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // ReceiveAddressesContext is the interface for the context needed for the ReceiveAddresses flow. diff --git a/app/protocol/flows/v5/addressexchange/sendaddresses.go b/app/protocol/flows/v5/addressexchange/sendaddresses.go index 7daeab8a4..0657a9fc0 100644 --- a/app/protocol/flows/v5/addressexchange/sendaddresses.go +++ b/app/protocol/flows/v5/addressexchange/sendaddresses.go @@ -3,9 +3,9 @@ package addressexchange import ( "math/rand" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/infrastructure/network/addressmanager" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/infrastructure/network/addressmanager" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // SendAddressesContext is the interface for the context needed for the SendAddresses flow. diff --git a/app/protocol/flows/v5/blockrelay/batch_size_test.go b/app/protocol/flows/v5/blockrelay/batch_size_test.go index b750fdf18..80d9b22f7 100644 --- a/app/protocol/flows/v5/blockrelay/batch_size_test.go +++ b/app/protocol/flows/v5/blockrelay/batch_size_test.go @@ -3,7 +3,7 @@ package blockrelay import ( "testing" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) func TestIBDBatchSizeLessThanRouteCapacity(t *testing.T) { diff --git a/app/protocol/flows/v5/blockrelay/block_locator.go b/app/protocol/flows/v5/blockrelay/block_locator.go index 318e9e109..020dc7a81 100644 --- a/app/protocol/flows/v5/blockrelay/block_locator.go +++ b/app/protocol/flows/v5/blockrelay/block_locator.go @@ -1,10 +1,10 @@ package blockrelay import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/common" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/common" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) func (flow *handleRelayInvsFlow) sendGetBlockLocator(highHash *externalapi.DomainHash, limit uint32) error { diff --git a/app/protocol/flows/v5/blockrelay/handle_ibd_block_locator.go b/app/protocol/flows/v5/blockrelay/handle_ibd_block_locator.go index 69132bbdf..ae4347f67 100644 --- a/app/protocol/flows/v5/blockrelay/handle_ibd_block_locator.go +++ b/app/protocol/flows/v5/blockrelay/handle_ibd_block_locator.go @@ -1,11 +1,11 @@ package blockrelay import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleIBDBlockLocatorContext is the interface for the context needed for the HandleIBDBlockLocator flow. diff --git a/app/protocol/flows/v5/blockrelay/handle_ibd_block_requests.go b/app/protocol/flows/v5/blockrelay/handle_ibd_block_requests.go index aeaf8b1e4..ca2d01409 100644 --- a/app/protocol/flows/v5/blockrelay/handle_ibd_block_requests.go +++ b/app/protocol/flows/v5/blockrelay/handle_ibd_block_requests.go @@ -1,10 +1,10 @@ package blockrelay import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/app/protocol/flows/v5/blockrelay/handle_ibd_request_chain_block_locator.go b/app/protocol/flows/v5/blockrelay/handle_ibd_request_chain_block_locator.go index 36930d3b8..f8eb7a2b6 100644 --- a/app/protocol/flows/v5/blockrelay/handle_ibd_request_chain_block_locator.go +++ b/app/protocol/flows/v5/blockrelay/handle_ibd_request_chain_block_locator.go @@ -1,12 +1,12 @@ package blockrelay import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/app/protocol/flows/v5/blockrelay/handle_pruning_point_and_its_anticone_requests.go b/app/protocol/flows/v5/blockrelay/handle_pruning_point_and_its_anticone_requests.go index be99cb748..fc9b9d069 100644 --- a/app/protocol/flows/v5/blockrelay/handle_pruning_point_and_its_anticone_requests.go +++ b/app/protocol/flows/v5/blockrelay/handle_pruning_point_and_its_anticone_requests.go @@ -3,13 +3,13 @@ package blockrelay import ( "sync/atomic" - "github.com/c4ei/YunSeokYeol/app/appmessage" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // PruningPointAndItsAnticoneRequestsContext is the interface for the context needed for the HandlePruningPointAndItsAnticoneRequests flow. diff --git a/app/protocol/flows/v5/blockrelay/handle_pruning_point_proof_requests.go b/app/protocol/flows/v5/blockrelay/handle_pruning_point_proof_requests.go index bfa7589f7..02506af90 100644 --- a/app/protocol/flows/v5/blockrelay/handle_pruning_point_proof_requests.go +++ b/app/protocol/flows/v5/blockrelay/handle_pruning_point_proof_requests.go @@ -1,10 +1,10 @@ package blockrelay import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // PruningPointProofRequestsContext is the interface for the context needed for the HandlePruningPointProofRequests flow. diff --git a/app/protocol/flows/v5/blockrelay/handle_relay_block_requests.go b/app/protocol/flows/v5/blockrelay/handle_relay_block_requests.go index 17d7a91a4..6b1d19c62 100644 --- a/app/protocol/flows/v5/blockrelay/handle_relay_block_requests.go +++ b/app/protocol/flows/v5/blockrelay/handle_relay_block_requests.go @@ -1,11 +1,11 @@ package blockrelay import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/app/protocol/flows/v5/blockrelay/handle_relay_invs.go b/app/protocol/flows/v5/blockrelay/handle_relay_invs.go index 632d9afb4..c0f040e39 100644 --- a/app/protocol/flows/v5/blockrelay/handle_relay_invs.go +++ b/app/protocol/flows/v5/blockrelay/handle_relay_invs.go @@ -1,19 +1,19 @@ package blockrelay import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/common" - "github.com/c4ei/YunSeokYeol/app/protocol/flowcontext" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashset" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/common" + "github.com/c4ei/yunseokyeol/app/protocol/flowcontext" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashset" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/app/protocol/flows/v5/blockrelay/handle_request_anticone.go b/app/protocol/flows/v5/blockrelay/handle_request_anticone.go index 94b0eee49..26a78919c 100644 --- a/app/protocol/flows/v5/blockrelay/handle_request_anticone.go +++ b/app/protocol/flows/v5/blockrelay/handle_request_anticone.go @@ -3,13 +3,13 @@ package blockrelay import ( "sort" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // RequestAnticoneContext is the interface for the context needed for the HandleRequestHeaders flow. diff --git a/app/protocol/flows/v5/blockrelay/handle_request_block_locator.go b/app/protocol/flows/v5/blockrelay/handle_request_block_locator.go index 312310544..664c66eba 100644 --- a/app/protocol/flows/v5/blockrelay/handle_request_block_locator.go +++ b/app/protocol/flows/v5/blockrelay/handle_request_block_locator.go @@ -1,11 +1,11 @@ package blockrelay import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // RequestBlockLocatorContext is the interface for the context needed for the HandleRequestBlockLocator flow. diff --git a/app/protocol/flows/v5/blockrelay/handle_request_headers.go b/app/protocol/flows/v5/blockrelay/handle_request_headers.go index 4fc234e04..18c46554d 100644 --- a/app/protocol/flows/v5/blockrelay/handle_request_headers.go +++ b/app/protocol/flows/v5/blockrelay/handle_request_headers.go @@ -1,13 +1,13 @@ package blockrelay import ( - "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // This constant must be equal at both syncer and syncee. Therefore, never (!!) change this constant unless a new p2p diff --git a/app/protocol/flows/v5/blockrelay/handle_request_pruning_point_utxo_set.go b/app/protocol/flows/v5/blockrelay/handle_request_pruning_point_utxo_set.go index 003412feb..0c4315dd4 100644 --- a/app/protocol/flows/v5/blockrelay/handle_request_pruning_point_utxo_set.go +++ b/app/protocol/flows/v5/blockrelay/handle_request_pruning_point_utxo_set.go @@ -3,14 +3,14 @@ package blockrelay import ( "errors" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/common" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/common" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleRequestPruningPointUTXOSetContext is the interface for the context needed for the HandleRequestPruningPointUTXOSet flow. diff --git a/app/protocol/flows/v5/blockrelay/ibd.go b/app/protocol/flows/v5/blockrelay/ibd.go index 273780a8a..d822c02fb 100644 --- a/app/protocol/flows/v5/blockrelay/ibd.go +++ b/app/protocol/flows/v5/blockrelay/ibd.go @@ -4,17 +4,17 @@ import ( "fmt" "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/common" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/common" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/app/protocol/flows/v5/blockrelay/ibd_with_headers_proof.go b/app/protocol/flows/v5/blockrelay/ibd_with_headers_proof.go index 5cbe0be1a..050ba0d8b 100644 --- a/app/protocol/flows/v5/blockrelay/ibd_with_headers_proof.go +++ b/app/protocol/flows/v5/blockrelay/ibd_with_headers_proof.go @@ -4,12 +4,12 @@ import ( "fmt" "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/common" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/common" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" "github.com/pkg/errors" ) diff --git a/app/protocol/flows/v5/blockrelay/log.go b/app/protocol/flows/v5/blockrelay/log.go index e2a7436ed..26322b7f8 100644 --- a/app/protocol/flows/v5/blockrelay/log.go +++ b/app/protocol/flows/v5/blockrelay/log.go @@ -1,8 +1,8 @@ package blockrelay import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var log = logger.RegisterSubSystem("PROT") diff --git a/app/protocol/flows/v5/blockrelay/send_virtual_selected_parent_inv.go b/app/protocol/flows/v5/blockrelay/send_virtual_selected_parent_inv.go index ddd91c14e..3b2bc86e2 100644 --- a/app/protocol/flows/v5/blockrelay/send_virtual_selected_parent_inv.go +++ b/app/protocol/flows/v5/blockrelay/send_virtual_selected_parent_inv.go @@ -1,11 +1,11 @@ package blockrelay import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // SendVirtualSelectedParentInvContext is the interface for the context needed for the SendVirtualSelectedParentInv flow. diff --git a/app/protocol/flows/v5/ping/receive.go b/app/protocol/flows/v5/ping/receive.go index b2b894bc5..b1f1d7c35 100644 --- a/app/protocol/flows/v5/ping/receive.go +++ b/app/protocol/flows/v5/ping/receive.go @@ -1,8 +1,8 @@ package ping import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // ReceivePingsContext is the interface for the context needed for the ReceivePings flow. diff --git a/app/protocol/flows/v5/ping/send.go b/app/protocol/flows/v5/ping/send.go index a7aaad883..392ca7264 100644 --- a/app/protocol/flows/v5/ping/send.go +++ b/app/protocol/flows/v5/ping/send.go @@ -3,15 +3,15 @@ package ping import ( "time" - "github.com/c4ei/YunSeokYeol/app/protocol/common" - "github.com/c4ei/YunSeokYeol/app/protocol/flowcontext" + "github.com/c4ei/yunseokyeol/app/protocol/common" + "github.com/c4ei/yunseokyeol/app/protocol/flowcontext" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/app/appmessage" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" - "github.com/c4ei/YunSeokYeol/util/random" + "github.com/c4ei/yunseokyeol/app/appmessage" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/util/random" ) // SendPingsContext is the interface for the context needed for the SendPings flow. diff --git a/app/protocol/flows/v5/register.go b/app/protocol/flows/v5/register.go index e2e9c3f78..01386bfa6 100644 --- a/app/protocol/flows/v5/register.go +++ b/app/protocol/flows/v5/register.go @@ -1,16 +1,16 @@ package v5 import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/common" - "github.com/c4ei/YunSeokYeol/app/protocol/flowcontext" - "github.com/c4ei/YunSeokYeol/app/protocol/flows/v5/addressexchange" - "github.com/c4ei/YunSeokYeol/app/protocol/flows/v5/blockrelay" - "github.com/c4ei/YunSeokYeol/app/protocol/flows/v5/ping" - "github.com/c4ei/YunSeokYeol/app/protocol/flows/v5/rejects" - "github.com/c4ei/YunSeokYeol/app/protocol/flows/v5/transactionrelay" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - routerpkg "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/common" + "github.com/c4ei/yunseokyeol/app/protocol/flowcontext" + "github.com/c4ei/yunseokyeol/app/protocol/flows/v5/addressexchange" + "github.com/c4ei/yunseokyeol/app/protocol/flows/v5/blockrelay" + "github.com/c4ei/yunseokyeol/app/protocol/flows/v5/ping" + "github.com/c4ei/yunseokyeol/app/protocol/flows/v5/rejects" + "github.com/c4ei/yunseokyeol/app/protocol/flows/v5/transactionrelay" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + routerpkg "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) type protocolManager interface { diff --git a/app/protocol/flows/v5/rejects/handle_rejects.go b/app/protocol/flows/v5/rejects/handle_rejects.go index 762b217c7..f855d1c6c 100644 --- a/app/protocol/flows/v5/rejects/handle_rejects.go +++ b/app/protocol/flows/v5/rejects/handle_rejects.go @@ -1,9 +1,9 @@ package rejects import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleRejectsContext is the interface for the context needed for the HandleRejects flow. diff --git a/app/protocol/flows/v5/testing/common_test.go b/app/protocol/flows/v5/testing/common_test.go index 168e4c4fa..e4f4c4e0f 100644 --- a/app/protocol/flows/v5/testing/common_test.go +++ b/app/protocol/flows/v5/testing/common_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" "github.com/pkg/errors" ) diff --git a/app/protocol/flows/v5/testing/receiveaddresses_test.go b/app/protocol/flows/v5/testing/receiveaddresses_test.go index fad77c9dd..20cc301bb 100644 --- a/app/protocol/flows/v5/testing/receiveaddresses_test.go +++ b/app/protocol/flows/v5/testing/receiveaddresses_test.go @@ -4,14 +4,14 @@ import ( "testing" "time" - "github.com/c4ei/YunSeokYeol/app/protocol/flows/v5/addressexchange" + "github.com/c4ei/yunseokyeol/app/protocol/flows/v5/addressexchange" - "github.com/c4ei/YunSeokYeol/app/appmessage" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/infrastructure/network/addressmanager" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/infrastructure/network/addressmanager" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) type fakeReceiveAddressesContext struct{} diff --git a/app/protocol/flows/v5/transactionrelay/handle_relayed_transactions.go b/app/protocol/flows/v5/transactionrelay/handle_relayed_transactions.go index d1400db6b..dd7133fbb 100644 --- a/app/protocol/flows/v5/transactionrelay/handle_relayed_transactions.go +++ b/app/protocol/flows/v5/transactionrelay/handle_relayed_transactions.go @@ -1,16 +1,16 @@ package transactionrelay import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/common" - "github.com/c4ei/YunSeokYeol/app/protocol/flowcontext" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/miningmanager/mempool" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/common" + "github.com/c4ei/yunseokyeol/app/protocol/flowcontext" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/miningmanager/mempool" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/app/protocol/flows/v5/transactionrelay/handle_relayed_transactions_test.go b/app/protocol/flows/v5/transactionrelay/handle_relayed_transactions_test.go index 58f37fec6..ba2658fce 100644 --- a/app/protocol/flows/v5/transactionrelay/handle_relayed_transactions_test.go +++ b/app/protocol/flows/v5/transactionrelay/handle_relayed_transactions_test.go @@ -5,22 +5,22 @@ import ( "strings" "testing" - "github.com/c4ei/YunSeokYeol/app/protocol/flowcontext" - "github.com/c4ei/YunSeokYeol/app/protocol/flows/v5/transactionrelay" + "github.com/c4ei/yunseokyeol/app/protocol/flowcontext" + "github.com/c4ei/yunseokyeol/app/protocol/flows/v5/transactionrelay" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/miningmanager/mempool" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/miningmanager/mempool" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) type mocTransactionsRelayContext struct { diff --git a/app/protocol/flows/v5/transactionrelay/handle_requested_transactions.go b/app/protocol/flows/v5/transactionrelay/handle_requested_transactions.go index 1b976f537..3db51155f 100644 --- a/app/protocol/flows/v5/transactionrelay/handle_requested_transactions.go +++ b/app/protocol/flows/v5/transactionrelay/handle_requested_transactions.go @@ -1,8 +1,8 @@ package transactionrelay import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) type handleRequestedTransactionsFlow struct { diff --git a/app/protocol/flows/v5/transactionrelay/handle_requested_transactions_test.go b/app/protocol/flows/v5/transactionrelay/handle_requested_transactions_test.go index b1fa8d129..cc088bde4 100644 --- a/app/protocol/flows/v5/transactionrelay/handle_requested_transactions_test.go +++ b/app/protocol/flows/v5/transactionrelay/handle_requested_transactions_test.go @@ -3,20 +3,20 @@ package transactionrelay_test import ( "testing" - "github.com/c4ei/YunSeokYeol/app/protocol/flowcontext" - "github.com/c4ei/YunSeokYeol/app/protocol/flows/v5/transactionrelay" + "github.com/c4ei/yunseokyeol/app/protocol/flowcontext" + "github.com/c4ei/yunseokyeol/app/protocol/flows/v5/transactionrelay" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/miningmanager/mempool" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/miningmanager/mempool" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/util/panics" "github.com/pkg/errors" ) diff --git a/app/protocol/log.go b/app/protocol/log.go index db78d0530..4e7ad1ba5 100644 --- a/app/protocol/log.go +++ b/app/protocol/log.go @@ -1,8 +1,8 @@ package protocol import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var log = logger.RegisterSubSystem("PROT") diff --git a/app/protocol/manager.go b/app/protocol/manager.go index e523c67e3..d25bc300a 100644 --- a/app/protocol/manager.go +++ b/app/protocol/manager.go @@ -5,20 +5,20 @@ import ( "sync" "sync/atomic" - "github.com/c4ei/YunSeokYeol/app/protocol/common" + "github.com/c4ei/yunseokyeol/app/protocol/common" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/domain" + "github.com/c4ei/yunseokyeol/domain" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/app/protocol/flowcontext" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/network/addressmanager" - "github.com/c4ei/YunSeokYeol/infrastructure/network/connmanager" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter" + "github.com/c4ei/yunseokyeol/app/protocol/flowcontext" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/network/addressmanager" + "github.com/c4ei/yunseokyeol/infrastructure/network/connmanager" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter" ) // Manager manages the p2p protocol diff --git a/app/protocol/peer/log.go b/app/protocol/peer/log.go index 509acd8da..46ff2fba0 100644 --- a/app/protocol/peer/log.go +++ b/app/protocol/peer/log.go @@ -1,7 +1,7 @@ package peer import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("PROT") diff --git a/app/protocol/peer/peer.go b/app/protocol/peer/peer.go index 016c4acac..ad6e75214 100644 --- a/app/protocol/peer/peer.go +++ b/app/protocol/peer/peer.go @@ -4,13 +4,13 @@ import ( "sync" "time" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/id" - mathUtil "github.com/c4ei/YunSeokYeol/util/math" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/id" + mathUtil "github.com/c4ei/yunseokyeol/util/math" + "github.com/c4ei/yunseokyeol/util/mstime" ) // Peer holds data about a peer. diff --git a/app/protocol/protocol.go b/app/protocol/protocol.go index 917dcbdfb..59422f228 100644 --- a/app/protocol/protocol.go +++ b/app/protocol/protocol.go @@ -4,18 +4,18 @@ import ( "sync" "sync/atomic" - "github.com/c4ei/YunSeokYeol/app/protocol/common" - "github.com/c4ei/YunSeokYeol/app/protocol/flows/ready" + "github.com/c4ei/yunseokyeol/app/protocol/common" + "github.com/c4ei/yunseokyeol/app/protocol/flows/ready" v5 "github.com/kaspanet/kaspad/app/protocol/flows/v5" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/flows/handshake" - peerpkg "github.com/c4ei/YunSeokYeol/app/protocol/peer" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/infrastructure/network/addressmanager" - "github.com/c4ei/YunSeokYeol/infrastructure/network/connmanager" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter" - routerpkg "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/flows/handshake" + peerpkg "github.com/c4ei/yunseokyeol/app/protocol/peer" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/infrastructure/network/addressmanager" + "github.com/c4ei/yunseokyeol/infrastructure/network/connmanager" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter" + routerpkg "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/app/protocol/protocolerrors/protocolerrors.go b/app/protocol/protocolerrors/protocolerrors.go index c347f3438..db2102231 100644 --- a/app/protocol/protocolerrors/protocolerrors.go +++ b/app/protocol/protocolerrors/protocolerrors.go @@ -1,7 +1,7 @@ package protocolerrors import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" "github.com/pkg/errors" ) diff --git a/app/rpc/log.go b/app/rpc/log.go index e528b021a..6fbe996ec 100644 --- a/app/rpc/log.go +++ b/app/rpc/log.go @@ -1,8 +1,8 @@ package rpc import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var log = logger.RegisterSubSystem("RPCS") diff --git a/app/rpc/manager.go b/app/rpc/manager.go index f5131f382..06f2870c1 100644 --- a/app/rpc/manager.go +++ b/app/rpc/manager.go @@ -1,17 +1,17 @@ package rpc import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/utxoindex" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/infrastructure/network/addressmanager" - "github.com/c4ei/YunSeokYeol/infrastructure/network/connmanager" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/utxoindex" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/network/addressmanager" + "github.com/c4ei/yunseokyeol/infrastructure/network/connmanager" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter" "github.com/pkg/errors" ) diff --git a/app/rpc/rpc.go b/app/rpc/rpc.go index 2856e1bde..89e1370ac 100644 --- a/app/rpc/rpc.go +++ b/app/rpc/rpc.go @@ -1,11 +1,11 @@ package rpc import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/app/rpc/rpchandlers" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/app/rpc/rpchandlers" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/app/rpc/rpccontext/chain_changed.go b/app/rpc/rpccontext/chain_changed.go index 7e093aa99..88d58309b 100644 --- a/app/rpc/rpccontext/chain_changed.go +++ b/app/rpc/rpccontext/chain_changed.go @@ -1,9 +1,9 @@ package rpccontext import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" ) // ConvertVirtualSelectedParentChainChangesToChainChangedNotificationMessage converts diff --git a/app/rpc/rpccontext/context.go b/app/rpc/rpccontext/context.go index 97aba422e..bb316f489 100644 --- a/app/rpc/rpccontext/context.go +++ b/app/rpc/rpccontext/context.go @@ -1,13 +1,13 @@ package rpccontext import ( - "github.com/c4ei/YunSeokYeol/app/protocol" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/domain/utxoindex" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/network/addressmanager" - "github.com/c4ei/YunSeokYeol/infrastructure/network/connmanager" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter" + "github.com/c4ei/yunseokyeol/app/protocol" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/domain/utxoindex" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/network/addressmanager" + "github.com/c4ei/yunseokyeol/infrastructure/network/connmanager" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter" ) // Context represents the RPC context diff --git a/app/rpc/rpccontext/log.go b/app/rpc/rpccontext/log.go index 44df22137..534a1667a 100644 --- a/app/rpc/rpccontext/log.go +++ b/app/rpc/rpccontext/log.go @@ -1,7 +1,7 @@ package rpccontext import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("RPCS") diff --git a/app/rpc/rpccontext/notificationmanager.go b/app/rpc/rpccontext/notificationmanager.go index 3c0082bdb..eac61e765 100644 --- a/app/rpc/rpccontext/notificationmanager.go +++ b/app/rpc/rpccontext/notificationmanager.go @@ -3,14 +3,14 @@ package rpccontext import ( "sync" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/utxoindex" - routerpkg "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/utxoindex" + routerpkg "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/app/rpc/rpccontext/utxos_by_addresses.go b/app/rpc/rpccontext/utxos_by_addresses.go index ca84f7ea9..7f3cf7092 100644 --- a/app/rpc/rpccontext/utxos_by_addresses.go +++ b/app/rpc/rpccontext/utxos_by_addresses.go @@ -3,12 +3,12 @@ package rpccontext import ( "encoding/hex" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/util" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/utxoindex" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/utxoindex" ) // ConvertUTXOOutpointEntryPairsToUTXOsByAddressesEntries converts diff --git a/app/rpc/rpccontext/verbosedata.go b/app/rpc/rpccontext/verbosedata.go index 922091521..56705e07a 100644 --- a/app/rpc/rpccontext/verbosedata.go +++ b/app/rpc/rpccontext/verbosedata.go @@ -5,17 +5,17 @@ import ( "math" "math/big" - difficultyPackage "github.com/c4ei/YunSeokYeol/util/difficulty" + difficultyPackage "github.com/c4ei/yunseokyeol/util/difficulty" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashes" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashes" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/dagconfig" ) // ErrBuildBlockVerboseDataInvalidBlock indicates that a block that was given to BuildBlockVerboseData is invalid. diff --git a/app/rpc/rpchandlers/add_peer.go b/app/rpc/rpchandlers/add_peer.go index d1474c44d..660fd3358 100644 --- a/app/rpc/rpchandlers/add_peer.go +++ b/app/rpc/rpchandlers/add_peer.go @@ -1,10 +1,10 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" - "github.com/c4ei/YunSeokYeol/util/network" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/util/network" ) // HandleAddPeer handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/ban.go b/app/rpc/rpchandlers/ban.go index ffbb32c92..eef8781bc 100644 --- a/app/rpc/rpchandlers/ban.go +++ b/app/rpc/rpchandlers/ban.go @@ -3,9 +3,9 @@ package rpchandlers import ( "net" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleBan handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/estimate_network_hashes_per_second.go b/app/rpc/rpchandlers/estimate_network_hashes_per_second.go index 30f0975d3..4d45ed538 100644 --- a/app/rpc/rpchandlers/estimate_network_hashes_per_second.go +++ b/app/rpc/rpchandlers/estimate_network_hashes_per_second.go @@ -1,11 +1,11 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleEstimateNetworkHashesPerSecond handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/get_balance_by_address.go b/app/rpc/rpchandlers/get_balance_by_address.go index 2b86e43c4..942a5f205 100644 --- a/app/rpc/rpchandlers/get_balance_by_address.go +++ b/app/rpc/rpchandlers/get_balance_by_address.go @@ -1,11 +1,11 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/util" "github.com/pkg/errors" ) diff --git a/app/rpc/rpchandlers/get_balances_by_addresses.go b/app/rpc/rpchandlers/get_balances_by_addresses.go index cba708948..86ca59190 100644 --- a/app/rpc/rpchandlers/get_balances_by_addresses.go +++ b/app/rpc/rpchandlers/get_balances_by_addresses.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/app/rpc/rpchandlers/get_block.go b/app/rpc/rpchandlers/get_block.go index 8f92800cb..729909ca7 100644 --- a/app/rpc/rpchandlers/get_block.go +++ b/app/rpc/rpchandlers/get_block.go @@ -1,10 +1,10 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/app/rpc/rpchandlers/get_block_count.go b/app/rpc/rpchandlers/get_block_count.go index eedf47581..a9b4ea950 100644 --- a/app/rpc/rpchandlers/get_block_count.go +++ b/app/rpc/rpchandlers/get_block_count.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleGetBlockCount handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/get_block_dag_info.go b/app/rpc/rpchandlers/get_block_dag_info.go index cd9751eb1..bba6fb08d 100644 --- a/app/rpc/rpchandlers/get_block_dag_info.go +++ b/app/rpc/rpchandlers/get_block_dag_info.go @@ -1,10 +1,10 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashes" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashes" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleGetBlockDAGInfo handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/get_block_template.go b/app/rpc/rpchandlers/get_block_template.go index b8a5eb717..3d59ab354 100644 --- a/app/rpc/rpchandlers/get_block_template.go +++ b/app/rpc/rpchandlers/get_block_template.go @@ -1,14 +1,14 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" - "github.com/c4ei/YunSeokYeol/util" - "github.com/c4ei/YunSeokYeol/version" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/util" + "github.com/c4ei/yunseokyeol/version" ) // HandleGetBlockTemplate handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/get_blocks.go b/app/rpc/rpchandlers/get_blocks.go index ba7db7e29..b9944b137 100644 --- a/app/rpc/rpchandlers/get_blocks.go +++ b/app/rpc/rpchandlers/get_blocks.go @@ -1,11 +1,11 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashes" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashes" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleGetBlocks handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/get_blocks_test.go b/app/rpc/rpchandlers/get_blocks_test.go index 8f6323ed5..4af9e42eb 100644 --- a/app/rpc/rpchandlers/get_blocks_test.go +++ b/app/rpc/rpchandlers/get_blocks_test.go @@ -5,18 +5,18 @@ import ( "sort" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/app/rpc/rpchandlers" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashes" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/miningmanager" - "github.com/c4ei/YunSeokYeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/app/rpc/rpchandlers" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashes" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/miningmanager" + "github.com/c4ei/yunseokyeol/infrastructure/config" ) type fakeDomain struct { diff --git a/app/rpc/rpchandlers/get_coin_supply.go b/app/rpc/rpchandlers/get_coin_supply.go index 0658081c8..4242a1f98 100644 --- a/app/rpc/rpchandlers/get_coin_supply.go +++ b/app/rpc/rpchandlers/get_coin_supply.go @@ -1,10 +1,10 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleGetCoinSupply handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/get_connected_peer_info.go b/app/rpc/rpchandlers/get_connected_peer_info.go index 1c27d50f9..900e61cea 100644 --- a/app/rpc/rpchandlers/get_connected_peer_info.go +++ b/app/rpc/rpchandlers/get_connected_peer_info.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleGetConnectedPeerInfo handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/get_current_network.go b/app/rpc/rpchandlers/get_current_network.go index a3fec5b46..8e810532c 100644 --- a/app/rpc/rpchandlers/get_current_network.go +++ b/app/rpc/rpchandlers/get_current_network.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleGetCurrentNetwork handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/get_headers.go b/app/rpc/rpchandlers/get_headers.go index 138868009..177b266ce 100644 --- a/app/rpc/rpchandlers/get_headers.go +++ b/app/rpc/rpchandlers/get_headers.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleGetHeaders handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/get_info.go b/app/rpc/rpchandlers/get_info.go index c71174de3..9a9a63bd4 100644 --- a/app/rpc/rpchandlers/get_info.go +++ b/app/rpc/rpchandlers/get_info.go @@ -1,10 +1,10 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" - "github.com/c4ei/YunSeokYeol/version" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/version" ) // HandleGetInfo handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/get_mempool_entries.go b/app/rpc/rpchandlers/get_mempool_entries.go index 222c8ce66..445b170f6 100644 --- a/app/rpc/rpchandlers/get_mempool_entries.go +++ b/app/rpc/rpchandlers/get_mempool_entries.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleGetMempoolEntries handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/get_mempool_entries_by_addresses.go b/app/rpc/rpchandlers/get_mempool_entries_by_addresses.go index a73c44acb..07fe9b1db 100644 --- a/app/rpc/rpchandlers/get_mempool_entries_by_addresses.go +++ b/app/rpc/rpchandlers/get_mempool_entries_by_addresses.go @@ -1,12 +1,12 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/util" ) // HandleGetMempoolEntriesByAddresses handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/get_mempool_entry.go b/app/rpc/rpchandlers/get_mempool_entry.go index d630ad971..320821795 100644 --- a/app/rpc/rpchandlers/get_mempool_entry.go +++ b/app/rpc/rpchandlers/get_mempool_entry.go @@ -1,11 +1,11 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionid" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionid" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleGetMempoolEntry handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/get_peer_addresses.go b/app/rpc/rpchandlers/get_peer_addresses.go index 70b26a406..eac23b303 100644 --- a/app/rpc/rpchandlers/get_peer_addresses.go +++ b/app/rpc/rpchandlers/get_peer_addresses.go @@ -4,9 +4,9 @@ import ( "net" "strconv" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleGetPeerAddresses handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/get_selected_tip_hash.go b/app/rpc/rpchandlers/get_selected_tip_hash.go index d33a3e62c..cb8eaa9bc 100644 --- a/app/rpc/rpchandlers/get_selected_tip_hash.go +++ b/app/rpc/rpchandlers/get_selected_tip_hash.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleGetSelectedTipHash handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/get_subnetwork.go b/app/rpc/rpchandlers/get_subnetwork.go index 088fe5f26..79c88c41e 100644 --- a/app/rpc/rpchandlers/get_subnetwork.go +++ b/app/rpc/rpchandlers/get_subnetwork.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleGetSubnetwork handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/get_utxos_by_addresses.go b/app/rpc/rpchandlers/get_utxos_by_addresses.go index 9d38043c8..33bddcc84 100644 --- a/app/rpc/rpchandlers/get_utxos_by_addresses.go +++ b/app/rpc/rpchandlers/get_utxos_by_addresses.go @@ -1,11 +1,11 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/util" ) // HandleGetUTXOsByAddresses handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/get_virtual_selected_parent_blue_score.go b/app/rpc/rpchandlers/get_virtual_selected_parent_blue_score.go index 3649bddf1..57bf46241 100644 --- a/app/rpc/rpchandlers/get_virtual_selected_parent_blue_score.go +++ b/app/rpc/rpchandlers/get_virtual_selected_parent_blue_score.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleGetVirtualSelectedParentBlueScore handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/get_virtual_selected_parent_chain_from_block.go b/app/rpc/rpchandlers/get_virtual_selected_parent_chain_from_block.go index 6280540b1..26d4121d4 100644 --- a/app/rpc/rpchandlers/get_virtual_selected_parent_chain_from_block.go +++ b/app/rpc/rpchandlers/get_virtual_selected_parent_chain_from_block.go @@ -1,10 +1,10 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleGetVirtualSelectedParentChainFromBlock handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/log.go b/app/rpc/rpchandlers/log.go index 692d17233..964e3d21e 100644 --- a/app/rpc/rpchandlers/log.go +++ b/app/rpc/rpchandlers/log.go @@ -1,8 +1,8 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var log = logger.RegisterSubSystem("RPCS") diff --git a/app/rpc/rpchandlers/notify_block_added.go b/app/rpc/rpchandlers/notify_block_added.go index 7d44669aa..131ac73e4 100644 --- a/app/rpc/rpchandlers/notify_block_added.go +++ b/app/rpc/rpchandlers/notify_block_added.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleNotifyBlockAdded handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/notify_finality_conflicts.go b/app/rpc/rpchandlers/notify_finality_conflicts.go index 2c6d355e2..33037c46e 100644 --- a/app/rpc/rpchandlers/notify_finality_conflicts.go +++ b/app/rpc/rpchandlers/notify_finality_conflicts.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleNotifyFinalityConflicts handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/notify_new_block_template.go b/app/rpc/rpchandlers/notify_new_block_template.go index 912a2dc17..9dfbf9628 100644 --- a/app/rpc/rpchandlers/notify_new_block_template.go +++ b/app/rpc/rpchandlers/notify_new_block_template.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleNotifyNewBlockTemplate handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/notify_pruning_point_utxo_set_overrides.go b/app/rpc/rpchandlers/notify_pruning_point_utxo_set_overrides.go index 59af49ab7..e9845f908 100644 --- a/app/rpc/rpchandlers/notify_pruning_point_utxo_set_overrides.go +++ b/app/rpc/rpchandlers/notify_pruning_point_utxo_set_overrides.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleNotifyPruningPointUTXOSetOverrideRequest handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/notify_utxos_changed.go b/app/rpc/rpchandlers/notify_utxos_changed.go index b9a535613..0c58889a9 100644 --- a/app/rpc/rpchandlers/notify_utxos_changed.go +++ b/app/rpc/rpchandlers/notify_utxos_changed.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleNotifyUTXOsChanged handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/notify_virtual_daa_score_changed.go b/app/rpc/rpchandlers/notify_virtual_daa_score_changed.go index 49e7dea02..49082af65 100644 --- a/app/rpc/rpchandlers/notify_virtual_daa_score_changed.go +++ b/app/rpc/rpchandlers/notify_virtual_daa_score_changed.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleNotifyVirtualDaaScoreChanged handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/notify_virtual_selected_parent_blue_score_changed.go b/app/rpc/rpchandlers/notify_virtual_selected_parent_blue_score_changed.go index 8aa718e29..e3c1f9cdb 100644 --- a/app/rpc/rpchandlers/notify_virtual_selected_parent_blue_score_changed.go +++ b/app/rpc/rpchandlers/notify_virtual_selected_parent_blue_score_changed.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleNotifyVirtualSelectedParentBlueScoreChanged handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/notify_virtual_selected_parent_chain_changed.go b/app/rpc/rpchandlers/notify_virtual_selected_parent_chain_changed.go index a375cf1cf..05595a675 100644 --- a/app/rpc/rpchandlers/notify_virtual_selected_parent_chain_changed.go +++ b/app/rpc/rpchandlers/notify_virtual_selected_parent_chain_changed.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleNotifyVirtualSelectedParentChainChanged handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/resolve_finality_conflict.go b/app/rpc/rpchandlers/resolve_finality_conflict.go index 31807cb33..f067b1360 100644 --- a/app/rpc/rpchandlers/resolve_finality_conflict.go +++ b/app/rpc/rpchandlers/resolve_finality_conflict.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleResolveFinalityConflict handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/shut_down.go b/app/rpc/rpchandlers/shut_down.go index 75fcd8f90..da49ed729 100644 --- a/app/rpc/rpchandlers/shut_down.go +++ b/app/rpc/rpchandlers/shut_down.go @@ -3,9 +3,9 @@ package rpchandlers import ( "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) const pauseBeforeShutDown = time.Second diff --git a/app/rpc/rpchandlers/stop_notifying_pruning_point_utxo_set_overrides.go b/app/rpc/rpchandlers/stop_notifying_pruning_point_utxo_set_overrides.go index 1f4c0eff5..a1870e935 100644 --- a/app/rpc/rpchandlers/stop_notifying_pruning_point_utxo_set_overrides.go +++ b/app/rpc/rpchandlers/stop_notifying_pruning_point_utxo_set_overrides.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleStopNotifyingPruningPointUTXOSetOverrideRequest handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/stop_notifying_utxos_changed.go b/app/rpc/rpchandlers/stop_notifying_utxos_changed.go index ada4de74b..3b4a0589e 100644 --- a/app/rpc/rpchandlers/stop_notifying_utxos_changed.go +++ b/app/rpc/rpchandlers/stop_notifying_utxos_changed.go @@ -1,9 +1,9 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleStopNotifyingUTXOsChanged handles the respectively named RPC command diff --git a/app/rpc/rpchandlers/submit_block.go b/app/rpc/rpchandlers/submit_block.go index ea37e7cc2..35c40dfed 100644 --- a/app/rpc/rpchandlers/submit_block.go +++ b/app/rpc/rpchandlers/submit_block.go @@ -3,12 +3,12 @@ package rpchandlers import ( "encoding/json" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/app/rpc/rpchandlers/submit_transaction.go b/app/rpc/rpchandlers/submit_transaction.go index 1281fa4a1..e5410e147 100644 --- a/app/rpc/rpchandlers/submit_transaction.go +++ b/app/rpc/rpchandlers/submit_transaction.go @@ -1,11 +1,11 @@ package rpchandlers import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/miningmanager/mempool" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/miningmanager/mempool" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/app/rpc/rpchandlers/unban.go b/app/rpc/rpchandlers/unban.go index e84a899f5..c4e5ad3d3 100644 --- a/app/rpc/rpchandlers/unban.go +++ b/app/rpc/rpchandlers/unban.go @@ -3,9 +3,9 @@ package rpchandlers import ( "net" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/rpc/rpccontext" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/rpc/rpccontext" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // HandleUnban handles the respectively named RPC command diff --git a/cmd/genkeypair/config.go b/cmd/genkeypair/config.go index 965a32475..bac9d44fc 100644 --- a/cmd/genkeypair/config.go +++ b/cmd/genkeypair/config.go @@ -1,7 +1,7 @@ package main import ( - "github.com/c4ei/YunSeokYeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/config" "github.com/jessevdk/go-flags" ) diff --git a/cmd/genkeypair/main.go b/cmd/genkeypair/main.go index 418bf1bf8..fbdb68114 100644 --- a/cmd/genkeypair/main.go +++ b/cmd/genkeypair/main.go @@ -3,8 +3,8 @@ package main import ( "fmt" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet" + "github.com/c4ei/yunseokyeol/util" ) func main() { diff --git a/cmd/kaspactl/command_parser.go b/cmd/kaspactl/command_parser.go index 253f2e152..6d51aab07 100644 --- a/cmd/kaspactl/command_parser.go +++ b/cmd/kaspactl/command_parser.go @@ -8,7 +8,7 @@ import ( "google.golang.org/protobuf/encoding/protojson" "google.golang.org/protobuf/proto" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/server/grpcserver/protowire" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/server/grpcserver/protowire" "github.com/pkg/errors" ) diff --git a/cmd/kaspactl/commands.go b/cmd/kaspactl/commands.go index 4af569051..b0f3a5eaa 100644 --- a/cmd/kaspactl/commands.go +++ b/cmd/kaspactl/commands.go @@ -5,7 +5,7 @@ import ( "reflect" "strings" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/server/grpcserver/protowire" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/server/grpcserver/protowire" ) var commandTypes = []reflect.Type{ diff --git a/cmd/kaspactl/config.go b/cmd/kaspactl/config.go index c1dcd9805..1bf6e70e4 100644 --- a/cmd/kaspactl/config.go +++ b/cmd/kaspactl/config.go @@ -1,7 +1,7 @@ package main import ( - "github.com/c4ei/YunSeokYeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/config" "github.com/jessevdk/go-flags" "github.com/pkg/errors" ) diff --git a/cmd/kaspactl/docker/Dockerfile b/cmd/kaspactl/docker/Dockerfile index fdbaf47f8..0c20df905 100644 --- a/cmd/kaspactl/docker/Dockerfile +++ b/cmd/kaspactl/docker/Dockerfile @@ -14,7 +14,7 @@ RUN go mod download COPY . . -WORKDIR /go/src/github.com/c4ei/YunSeokYeol/cmd/kaspactl +WORKDIR /go/src/github.com/c4ei/yunseokyeol/cmd/kaspactl RUN GOOS=linux go build -a -installsuffix cgo -o kaspactl . @@ -24,7 +24,7 @@ WORKDIR /app RUN apk add --no-cache ca-certificates tini -COPY --from=build /go/src/github.com/c4ei/YunSeokYeol/cmd/kaspactl/kaspactl /app/ +COPY --from=build /go/src/github.com/c4ei/yunseokyeol/cmd/kaspactl/kaspactl /app/ USER nobody ENTRYPOINT [ "/sbin/tini", "--" ] diff --git a/cmd/kaspactl/main.go b/cmd/kaspactl/main.go index 9462f8cb3..72fff13b3 100644 --- a/cmd/kaspactl/main.go +++ b/cmd/kaspactl/main.go @@ -5,14 +5,14 @@ import ( "os" "time" - "github.com/c4ei/YunSeokYeol/version" + "github.com/c4ei/yunseokyeol/version" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/server/grpcserver/protowire" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/server/grpcserver/protowire" "github.com/pkg/errors" "google.golang.org/protobuf/encoding/protojson" - "github.com/c4ei/YunSeokYeol/infrastructure/network/rpcclient/grpcclient" + "github.com/c4ei/yunseokyeol/infrastructure/network/rpcclient/grpcclient" ) func main() { diff --git a/cmd/kaspactl/reflection_helpers.go b/cmd/kaspactl/reflection_helpers.go index ccba678a4..39d1d2ea8 100644 --- a/cmd/kaspactl/reflection_helpers.go +++ b/cmd/kaspactl/reflection_helpers.go @@ -4,7 +4,7 @@ import ( "reflect" "unicode" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/server/grpcserver/protowire" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/server/grpcserver/protowire" ) // protobuf generates the command types with two types: diff --git a/cmd/kaspaminer/client.go b/cmd/kaspaminer/client.go index 43de40911..86379dac8 100644 --- a/cmd/kaspaminer/client.go +++ b/cmd/kaspaminer/client.go @@ -3,9 +3,9 @@ package main import ( "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/infrastructure/network/rpcclient" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/network/rpcclient" "github.com/pkg/errors" ) diff --git a/cmd/kaspaminer/config.go b/cmd/kaspaminer/config.go index e4eb15fdd..e9a265b93 100644 --- a/cmd/kaspaminer/config.go +++ b/cmd/kaspaminer/config.go @@ -7,12 +7,12 @@ import ( "strconv" "strings" - "github.com/c4ei/YunSeokYeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/util" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/version" + "github.com/c4ei/yunseokyeol/version" "github.com/jessevdk/go-flags" ) diff --git a/cmd/kaspaminer/docker/Dockerfile b/cmd/kaspaminer/docker/Dockerfile index 7fa44cdb8..70f0c8b9e 100644 --- a/cmd/kaspaminer/docker/Dockerfile +++ b/cmd/kaspaminer/docker/Dockerfile @@ -14,7 +14,7 @@ RUN go mod download COPY . . -WORKDIR /go/src/github.com/c4ei/YunSeokYeol/cmd/kaspaminer +WORKDIR /go/src/github.com/c4ei/yunseokyeol/cmd/kaspaminer RUN GOOS=linux go build -a -installsuffix cgo -o kaspaminer . # --- multistage docker build: stage #2: runtime image @@ -23,7 +23,7 @@ WORKDIR /app RUN apk add --no-cache ca-certificates tini -COPY --from=build /go/src/github.com/c4ei/YunSeokYeol/cmd/kaspaminer/kaspaminer /app/ +COPY --from=build /go/src/github.com/c4ei/yunseokyeol/cmd/kaspaminer/kaspaminer /app/ USER nobody ENTRYPOINT [ "/sbin/tini", "--" ] diff --git a/cmd/kaspaminer/log.go b/cmd/kaspaminer/log.go index 1761f9476..929dbc1fc 100644 --- a/cmd/kaspaminer/log.go +++ b/cmd/kaspaminer/log.go @@ -4,8 +4,8 @@ import ( "fmt" "os" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var ( diff --git a/cmd/kaspaminer/main.go b/cmd/kaspaminer/main.go index d2ac4387e..176de2549 100644 --- a/cmd/kaspaminer/main.go +++ b/cmd/kaspaminer/main.go @@ -4,17 +4,17 @@ import ( "fmt" "os" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/util" - "github.com/c4ei/YunSeokYeol/version" + "github.com/c4ei/yunseokyeol/version" "github.com/pkg/errors" _ "net/http/pprof" - "github.com/c4ei/YunSeokYeol/infrastructure/os/signal" - "github.com/c4ei/YunSeokYeol/util/panics" - "github.com/c4ei/YunSeokYeol/util/profiling" + "github.com/c4ei/yunseokyeol/infrastructure/os/signal" + "github.com/c4ei/yunseokyeol/util/panics" + "github.com/c4ei/yunseokyeol/util/profiling" ) func main() { diff --git a/cmd/kaspaminer/mineloop.go b/cmd/kaspaminer/mineloop.go index 4f17395c8..c831c88c1 100644 --- a/cmd/kaspaminer/mineloop.go +++ b/cmd/kaspaminer/mineloop.go @@ -6,15 +6,15 @@ import ( "sync/atomic" "time" - "github.com/c4ei/YunSeokYeol/version" + "github.com/c4ei/yunseokyeol/version" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/cmd/kaspaminer/templatemanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/pow" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/cmd/kaspaminer/templatemanager" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/pow" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/util" "github.com/pkg/errors" ) diff --git a/cmd/kaspaminer/templatemanager/templatemanager.go b/cmd/kaspaminer/templatemanager/templatemanager.go index 31a875233..055f0fca4 100644 --- a/cmd/kaspaminer/templatemanager/templatemanager.go +++ b/cmd/kaspaminer/templatemanager/templatemanager.go @@ -3,9 +3,9 @@ package templatemanager import ( "sync" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/pow" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/pow" ) var currentTemplate *externalapi.DomainBlock diff --git a/cmd/kaspawallet/balance.go b/cmd/kaspawallet/balance.go index 8b6faecd0..569668d40 100644 --- a/cmd/kaspawallet/balance.go +++ b/cmd/kaspawallet/balance.go @@ -4,9 +4,9 @@ import ( "context" "fmt" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/client" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/pb" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/utils" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/client" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/pb" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/utils" ) func balance(conf *balanceConfig) error { diff --git a/cmd/kaspawallet/broadcast.go b/cmd/kaspawallet/broadcast.go index 7274cb481..f58137737 100644 --- a/cmd/kaspawallet/broadcast.go +++ b/cmd/kaspawallet/broadcast.go @@ -6,8 +6,8 @@ import ( "io/ioutil" "strings" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/client" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/pb" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/client" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/pb" "github.com/pkg/errors" ) diff --git a/cmd/kaspawallet/config.go b/cmd/kaspawallet/config.go index dd467493f..4f7f5fee4 100644 --- a/cmd/kaspawallet/config.go +++ b/cmd/kaspawallet/config.go @@ -3,7 +3,7 @@ package main import ( "os" - "github.com/c4ei/YunSeokYeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/config" "github.com/pkg/errors" "github.com/jessevdk/go-flags" diff --git a/cmd/kaspawallet/create.go b/cmd/kaspawallet/create.go index 20791eb2a..8e330158f 100644 --- a/cmd/kaspawallet/create.go +++ b/cmd/kaspawallet/create.go @@ -5,12 +5,12 @@ import ( "fmt" "os" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet/bip32" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/utils" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet/bip32" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/utils" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/keys" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/keys" ) func create(conf *createConfig) error { diff --git a/cmd/kaspawallet/create_unsigned_tx.go b/cmd/kaspawallet/create_unsigned_tx.go index 31a3400f0..9c929853b 100644 --- a/cmd/kaspawallet/create_unsigned_tx.go +++ b/cmd/kaspawallet/create_unsigned_tx.go @@ -5,9 +5,9 @@ import ( "fmt" "os" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/client" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/pb" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/client" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/pb" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" ) func createUnsignedTransaction(conf *createUnsignedTransactionConfig) error { diff --git a/cmd/kaspawallet/daemon/client/client.go b/cmd/kaspawallet/daemon/client/client.go index cd84c6fbd..432361dde 100644 --- a/cmd/kaspawallet/daemon/client/client.go +++ b/cmd/kaspawallet/daemon/client/client.go @@ -4,11 +4,11 @@ import ( "context" "time" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/server" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/server" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/pb" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/pb" "google.golang.org/grpc" ) diff --git a/cmd/kaspawallet/daemon/pb/kaspawalletd.proto b/cmd/kaspawallet/daemon/pb/kaspawalletd.proto index bc0573680..ba8d6c8b4 100644 --- a/cmd/kaspawallet/daemon/pb/kaspawalletd.proto +++ b/cmd/kaspawallet/daemon/pb/kaspawalletd.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -option go_package = "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/pb"; +option go_package = "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/pb"; package kaspawalletd; service kaspawalletd { diff --git a/cmd/kaspawallet/daemon/server/address.go b/cmd/kaspawallet/daemon/server/address.go index 9bd4a1c06..7eafc76e2 100644 --- a/cmd/kaspawallet/daemon/server/address.go +++ b/cmd/kaspawallet/daemon/server/address.go @@ -4,9 +4,9 @@ import ( "context" "fmt" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/pb" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/pb" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet" + "github.com/c4ei/yunseokyeol/util" "github.com/pkg/errors" ) diff --git a/cmd/kaspawallet/daemon/server/balance.go b/cmd/kaspawallet/daemon/server/balance.go index 71a67005f..93580fdc4 100644 --- a/cmd/kaspawallet/daemon/server/balance.go +++ b/cmd/kaspawallet/daemon/server/balance.go @@ -3,8 +3,8 @@ package server import ( "context" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/pb" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/pb" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet" ) type balancesType struct{ available, pending uint64 } diff --git a/cmd/kaspawallet/daemon/server/broadcast.go b/cmd/kaspawallet/daemon/server/broadcast.go index a93a01ae2..ba438c4d2 100644 --- a/cmd/kaspawallet/daemon/server/broadcast.go +++ b/cmd/kaspawallet/daemon/server/broadcast.go @@ -4,12 +4,12 @@ import ( "context" "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/pb" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/infrastructure/network/rpcclient" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/pb" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/infrastructure/network/rpcclient" "github.com/pkg/errors" ) diff --git a/cmd/kaspawallet/daemon/server/common.go b/cmd/kaspawallet/daemon/server/common.go index c096bd17f..b2c86e8a3 100644 --- a/cmd/kaspawallet/daemon/server/common.go +++ b/cmd/kaspawallet/daemon/server/common.go @@ -1,6 +1,6 @@ package server -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" type walletUTXO struct { Outpoint *externalapi.DomainOutpoint diff --git a/cmd/kaspawallet/daemon/server/create_unsigned_transaction.go b/cmd/kaspawallet/daemon/server/create_unsigned_transaction.go index 3905cbc2c..5bc760011 100644 --- a/cmd/kaspawallet/daemon/server/create_unsigned_transaction.go +++ b/cmd/kaspawallet/daemon/server/create_unsigned_transaction.go @@ -5,10 +5,10 @@ import ( "fmt" "time" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/pb" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/pb" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/util" "github.com/pkg/errors" "golang.org/x/exp/slices" ) diff --git a/cmd/kaspawallet/daemon/server/external_spendable_utxos.go b/cmd/kaspawallet/daemon/server/external_spendable_utxos.go index 8492a8cd9..f9678c5a7 100644 --- a/cmd/kaspawallet/daemon/server/external_spendable_utxos.go +++ b/cmd/kaspawallet/daemon/server/external_spendable_utxos.go @@ -3,10 +3,10 @@ package server import ( "context" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/pb" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/pb" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet" + "github.com/c4ei/yunseokyeol/util" ) func (s *server) GetExternalSpendableUTXOs(_ context.Context, request *pb.GetExternalSpendableUTXOsRequest) (*pb.GetExternalSpendableUTXOsResponse, error) { diff --git a/cmd/kaspawallet/daemon/server/log.go b/cmd/kaspawallet/daemon/server/log.go index 202935633..9e5eaa375 100644 --- a/cmd/kaspawallet/daemon/server/log.go +++ b/cmd/kaspawallet/daemon/server/log.go @@ -5,10 +5,10 @@ import ( "os" "path/filepath" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/util" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var ( diff --git a/cmd/kaspawallet/daemon/server/rpc.go b/cmd/kaspawallet/daemon/server/rpc.go index 983aee429..489e32cd5 100644 --- a/cmd/kaspawallet/daemon/server/rpc.go +++ b/cmd/kaspawallet/daemon/server/rpc.go @@ -3,8 +3,8 @@ package server import ( "time" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/infrastructure/network/rpcclient" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/infrastructure/network/rpcclient" ) func connectToRPC(params *dagconfig.Params, rpcServer string, timeout uint32) (*rpcclient.RPCClient, error) { diff --git a/cmd/kaspawallet/daemon/server/send.go b/cmd/kaspawallet/daemon/server/send.go index 8d3838075..181a9c778 100644 --- a/cmd/kaspawallet/daemon/server/send.go +++ b/cmd/kaspawallet/daemon/server/send.go @@ -3,7 +3,7 @@ package server import ( "context" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/pb" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/pb" ) func (s *server) Send(_ context.Context, request *pb.SendRequest) (*pb.SendResponse, error) { diff --git a/cmd/kaspawallet/daemon/server/server.go b/cmd/kaspawallet/daemon/server/server.go index 2b897225b..6ff4fdf43 100644 --- a/cmd/kaspawallet/daemon/server/server.go +++ b/cmd/kaspawallet/daemon/server/server.go @@ -7,18 +7,18 @@ import ( "sync" "time" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/util/txmass" + "github.com/c4ei/yunseokyeol/util/txmass" - "github.com/c4ei/YunSeokYeol/util/profiling" + "github.com/c4ei/yunseokyeol/util/profiling" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/pb" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/keys" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/infrastructure/network/rpcclient" - "github.com/c4ei/YunSeokYeol/infrastructure/os/signal" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/pb" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/keys" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/infrastructure/network/rpcclient" + "github.com/c4ei/yunseokyeol/infrastructure/os/signal" + "github.com/c4ei/yunseokyeol/util/panics" "github.com/pkg/errors" "google.golang.org/grpc" diff --git a/cmd/kaspawallet/daemon/server/shutdown.go b/cmd/kaspawallet/daemon/server/shutdown.go index e9166d193..b444cb35a 100644 --- a/cmd/kaspawallet/daemon/server/shutdown.go +++ b/cmd/kaspawallet/daemon/server/shutdown.go @@ -3,7 +3,7 @@ package server import ( "context" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/pb" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/pb" ) func (s *server) Shutdown(ctx context.Context, request *pb.ShutdownRequest) (*pb.ShutdownResponse, error) { diff --git a/cmd/kaspawallet/daemon/server/sign.go b/cmd/kaspawallet/daemon/server/sign.go index df5ed8d74..0660d1c85 100644 --- a/cmd/kaspawallet/daemon/server/sign.go +++ b/cmd/kaspawallet/daemon/server/sign.go @@ -3,9 +3,9 @@ package server import ( "context" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/pb" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/pb" ) func (s *server) Sign(_ context.Context, request *pb.SignRequest) (*pb.SignResponse, error) { diff --git a/cmd/kaspawallet/daemon/server/split_transaction.go b/cmd/kaspawallet/daemon/server/split_transaction.go index 8df5d32ef..65652d470 100644 --- a/cmd/kaspawallet/daemon/server/split_transaction.go +++ b/cmd/kaspawallet/daemon/server/split_transaction.go @@ -4,14 +4,14 @@ import ( "github.com/kaspanet/go-secp256k1" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/domain/miningmanager/mempool" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/miningmanager/mempool" + "github.com/c4ei/yunseokyeol/util" ) // maybeAutoCompoundTransaction checks if a transaction's mass is higher that what is allowed for a standard diff --git a/cmd/kaspawallet/daemon/server/split_transaction_test.go b/cmd/kaspawallet/daemon/server/split_transaction_test.go index eb099bdda..d8c1fa865 100644 --- a/cmd/kaspawallet/daemon/server/split_transaction_test.go +++ b/cmd/kaspawallet/daemon/server/split_transaction_test.go @@ -3,21 +3,21 @@ package server import ( "testing" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet/serialization" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet/serialization" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/keys" - "github.com/c4ei/YunSeokYeol/util/txmass" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/keys" + "github.com/c4ei/yunseokyeol/util/txmass" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" ) func TestEstimateMassAfterSignatures(t *testing.T) { diff --git a/cmd/kaspawallet/daemon/server/sync.go b/cmd/kaspawallet/daemon/server/sync.go index 1d914316e..bda7c224f 100644 --- a/cmd/kaspawallet/daemon/server/sync.go +++ b/cmd/kaspawallet/daemon/server/sync.go @@ -5,9 +5,9 @@ import ( "sort" "time" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet" - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/cmd/kaspawallet/docker/Dockerfile b/cmd/kaspawallet/docker/Dockerfile index cdbfd6150..ee14db8b7 100644 --- a/cmd/kaspawallet/docker/Dockerfile +++ b/cmd/kaspawallet/docker/Dockerfile @@ -14,7 +14,7 @@ RUN go mod download COPY . . -WORKDIR /go/src/github.com/c4ei/YunSeokYeol/cmd/kaspawallet +WORKDIR /go/src/github.com/c4ei/yunseokyeol/cmd/kaspawallet RUN GOOS=linux go build -a -installsuffix cgo -o kaspawallet . # --- multistage docker build: stage #2: runtime image @@ -23,7 +23,7 @@ WORKDIR /app RUN apk add --no-cache ca-certificates tini -COPY --from=build /go/src/github.com/c4ei/YunSeokYeol/cmd/kaspawallet/kaspawallet /app/ +COPY --from=build /go/src/github.com/c4ei/yunseokyeol/cmd/kaspawallet/kaspawallet /app/ USER nobody ENTRYPOINT [ "/sbin/tini", "--" ] diff --git a/cmd/kaspawallet/dump_unencrypted_data.go b/cmd/kaspawallet/dump_unencrypted_data.go index 521e0cc97..616713ea1 100644 --- a/cmd/kaspawallet/dump_unencrypted_data.go +++ b/cmd/kaspawallet/dump_unencrypted_data.go @@ -5,9 +5,9 @@ import ( "fmt" "os" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/keys" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/utils" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/keys" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/utils" "github.com/pkg/errors" ) diff --git a/cmd/kaspawallet/keys/create.go b/cmd/kaspawallet/keys/create.go index 56547abb4..b5cb13e89 100644 --- a/cmd/kaspawallet/keys/create.go +++ b/cmd/kaspawallet/keys/create.go @@ -7,9 +7,9 @@ import ( "fmt" "os" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/utils" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/utils" + "github.com/c4ei/yunseokyeol/domain/dagconfig" "github.com/pkg/errors" "github.com/tyler-smith/go-bip39" ) diff --git a/cmd/kaspawallet/keys/keys.go b/cmd/kaspawallet/keys/keys.go index 9ba67eab4..04eaa334e 100644 --- a/cmd/kaspawallet/keys/keys.go +++ b/cmd/kaspawallet/keys/keys.go @@ -13,10 +13,10 @@ import ( "github.com/gofrs/flock" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/utils" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/utils" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/util" "github.com/pkg/errors" "golang.org/x/crypto/argon2" "golang.org/x/crypto/chacha20poly1305" diff --git a/cmd/kaspawallet/libkaspawallet/bip32/serialization.go b/cmd/kaspawallet/libkaspawallet/bip32/serialization.go index 449b89357..ae47bd2ea 100644 --- a/cmd/kaspawallet/libkaspawallet/bip32/serialization.go +++ b/cmd/kaspawallet/libkaspawallet/bip32/serialization.go @@ -3,7 +3,7 @@ package bip32 import ( "encoding/binary" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet/bip32/base58" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet/bip32/base58" "github.com/kaspanet/go-secp256k1" "github.com/pkg/errors" ) diff --git a/cmd/kaspawallet/libkaspawallet/bip39.go b/cmd/kaspawallet/libkaspawallet/bip39.go index 493e86dc1..441fbd53d 100644 --- a/cmd/kaspawallet/libkaspawallet/bip39.go +++ b/cmd/kaspawallet/libkaspawallet/bip39.go @@ -3,8 +3,8 @@ package libkaspawallet import ( "fmt" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet/bip32" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet/bip32" + "github.com/c4ei/yunseokyeol/domain/dagconfig" "github.com/pkg/errors" "github.com/tyler-smith/go-bip39" ) diff --git a/cmd/kaspawallet/libkaspawallet/converters.go b/cmd/kaspawallet/libkaspawallet/converters.go index 08588a476..150c04fa0 100644 --- a/cmd/kaspawallet/libkaspawallet/converters.go +++ b/cmd/kaspawallet/libkaspawallet/converters.go @@ -3,11 +3,11 @@ package libkaspawallet import ( "encoding/hex" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/pb" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionid" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/pb" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionid" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" ) // KaspawalletdUTXOsTolibkaspawalletUTXOs converts a []*pb.UtxosByAddressesEntry to a []*libkaspawallet.UTXO diff --git a/cmd/kaspawallet/libkaspawallet/keypair.go b/cmd/kaspawallet/libkaspawallet/keypair.go index 7b1b568e1..d8a220049 100644 --- a/cmd/kaspawallet/libkaspawallet/keypair.go +++ b/cmd/kaspawallet/libkaspawallet/keypair.go @@ -5,9 +5,9 @@ import ( "sort" "strings" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet/bip32" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet/bip32" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/util" "github.com/kaspanet/go-secp256k1" "github.com/pkg/errors" ) diff --git a/cmd/kaspawallet/libkaspawallet/serialization/protoserialization/wallet.proto b/cmd/kaspawallet/libkaspawallet/serialization/protoserialization/wallet.proto index 25f099c38..af17ea562 100644 --- a/cmd/kaspawallet/libkaspawallet/serialization/protoserialization/wallet.proto +++ b/cmd/kaspawallet/libkaspawallet/serialization/protoserialization/wallet.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package protoserialization; -option go_package = "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet/serialization/protoserialization"; +option go_package = "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet/serialization/protoserialization"; message PartiallySignedTransaction{ TransactionMessage tx = 1; diff --git a/cmd/kaspawallet/libkaspawallet/serialization/serialization.go b/cmd/kaspawallet/libkaspawallet/serialization/serialization.go index 3b47e5bb7..3cfe30ebc 100644 --- a/cmd/kaspawallet/libkaspawallet/serialization/serialization.go +++ b/cmd/kaspawallet/libkaspawallet/serialization/serialization.go @@ -3,9 +3,9 @@ package serialization import ( "math" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet/serialization/protoserialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet/serialization/protoserialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" "github.com/pkg/errors" "google.golang.org/protobuf/proto" ) diff --git a/cmd/kaspawallet/libkaspawallet/sign.go b/cmd/kaspawallet/libkaspawallet/sign.go index 3fbb4579f..4e48d5a86 100644 --- a/cmd/kaspawallet/libkaspawallet/sign.go +++ b/cmd/kaspawallet/libkaspawallet/sign.go @@ -1,13 +1,13 @@ package libkaspawallet import ( - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet/bip32" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet/bip32" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/dagconfig" "github.com/pkg/errors" ) diff --git a/cmd/kaspawallet/libkaspawallet/transaction.go b/cmd/kaspawallet/libkaspawallet/transaction.go index f875fd8f6..02da0d487 100644 --- a/cmd/kaspawallet/libkaspawallet/transaction.go +++ b/cmd/kaspawallet/libkaspawallet/transaction.go @@ -1,13 +1,13 @@ package libkaspawallet import ( - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet/bip32" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet/bip32" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/util" "github.com/pkg/errors" ) diff --git a/cmd/kaspawallet/libkaspawallet/transaction_test.go b/cmd/kaspawallet/libkaspawallet/transaction_test.go index 1bd2e71ba..116413558 100644 --- a/cmd/kaspawallet/libkaspawallet/transaction_test.go +++ b/cmd/kaspawallet/libkaspawallet/transaction_test.go @@ -5,16 +5,16 @@ import ( "strings" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/util" ) func forSchnorrAndECDSA(t *testing.T, testFunc func(t *testing.T, ecdsa bool)) { diff --git a/cmd/kaspawallet/new_address.go b/cmd/kaspawallet/new_address.go index a759f639a..d8aa50d95 100644 --- a/cmd/kaspawallet/new_address.go +++ b/cmd/kaspawallet/new_address.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/client" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/pb" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/client" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/pb" ) func newAddress(conf *newAddressConfig) error { diff --git a/cmd/kaspawallet/parse.go b/cmd/kaspawallet/parse.go index 8c028f5a0..0d19469fd 100644 --- a/cmd/kaspawallet/parse.go +++ b/cmd/kaspawallet/parse.go @@ -6,10 +6,10 @@ import ( "io/ioutil" "strings" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" "github.com/pkg/errors" ) diff --git a/cmd/kaspawallet/send.go b/cmd/kaspawallet/send.go index 4180a35a1..2e2d049e6 100644 --- a/cmd/kaspawallet/send.go +++ b/cmd/kaspawallet/send.go @@ -6,11 +6,11 @@ import ( "os" "strings" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/client" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/pb" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/keys" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/client" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/pb" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/keys" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" "github.com/pkg/errors" ) diff --git a/cmd/kaspawallet/show_addresses.go b/cmd/kaspawallet/show_addresses.go index 8b39fef31..558585c25 100644 --- a/cmd/kaspawallet/show_addresses.go +++ b/cmd/kaspawallet/show_addresses.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/client" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/pb" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/client" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/pb" ) func showAddresses(conf *showAddressesConfig) error { diff --git a/cmd/kaspawallet/sign.go b/cmd/kaspawallet/sign.go index 2729ee6cb..cfd9111fe 100644 --- a/cmd/kaspawallet/sign.go +++ b/cmd/kaspawallet/sign.go @@ -6,8 +6,8 @@ import ( "os" "strings" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/keys" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/keys" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet" "github.com/pkg/errors" ) diff --git a/cmd/kaspawallet/start_daemon.go b/cmd/kaspawallet/start_daemon.go index c30eec86e..42d9c573c 100644 --- a/cmd/kaspawallet/start_daemon.go +++ b/cmd/kaspawallet/start_daemon.go @@ -1,6 +1,6 @@ package main -import "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/server" +import "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/server" func startDaemon(conf *startDaemonConfig) error { return server.Start(conf.NetParams(), conf.Listen, conf.RPCServer, conf.KeysFile, conf.Profile, conf.Timeout) diff --git a/cmd/kaspawallet/sweep.go b/cmd/kaspawallet/sweep.go index 2f6b0ff02..7ecf15666 100644 --- a/cmd/kaspawallet/sweep.go +++ b/cmd/kaspawallet/sweep.go @@ -5,21 +5,21 @@ import ( "encoding/hex" "fmt" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/client" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/daemon/pb" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet/serialization" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/utils" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/domain/miningmanager/mempool" - "github.com/c4ei/YunSeokYeol/util" - "github.com/c4ei/YunSeokYeol/util/txmass" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/client" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/daemon/pb" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet/serialization" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/utils" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/miningmanager/mempool" + "github.com/c4ei/yunseokyeol/util" + "github.com/c4ei/yunseokyeol/util/txmass" "github.com/kaspanet/go-secp256k1" "github.com/pkg/errors" ) diff --git a/cmd/kaspawallet/utils/format_kas.go b/cmd/kaspawallet/utils/format_kas.go index e860da293..a4ac75a46 100644 --- a/cmd/kaspawallet/utils/format_kas.go +++ b/cmd/kaspawallet/utils/format_kas.go @@ -3,7 +3,7 @@ package utils import ( "fmt" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" ) // FormatKas takes the amount of sompis as uint64, and returns amount of KAS with 8 decimal places diff --git a/docker/Dockerfile b/docker/Dockerfile index a32ca2ab4..892960fd1 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -24,8 +24,8 @@ WORKDIR /app RUN apk add --no-cache ca-certificates tini -COPY --from=build /go/src/github.com/c4ei/YunSeokYeol/kaspad /app/ -COPY --from=build /go/src/github.com/c4ei/YunSeokYeol/infrastructure/config/sample-kaspad.conf /app/ +COPY --from=build /go/src/github.com/c4ei/yunseokyeol/kaspad /app/ +COPY --from=build /go/src/github.com/c4ei/yunseokyeol/infrastructure/config/sample-kaspad.conf /app/ USER nobody ENTRYPOINT [ "/sbin/tini", "--" ] diff --git a/domain/consensus/consensus.go b/domain/consensus/consensus.go index 7aa54824c..34eb88948 100644 --- a/domain/consensus/consensus.go +++ b/domain/consensus/consensus.go @@ -4,14 +4,14 @@ import ( "math/big" "sync" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/util/mstime" - "github.com/c4ei/YunSeokYeol/domain/consensus/database" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/database" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/pkg/errors" ) diff --git a/domain/consensus/consensus_test.go b/domain/consensus/consensus_test.go index 21ec4f0cb..f21667f60 100644 --- a/domain/consensus/consensus_test.go +++ b/domain/consensus/consensus_test.go @@ -3,11 +3,11 @@ package consensus_test import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" "github.com/pkg/errors" ) diff --git a/domain/consensus/constructors.go b/domain/consensus/constructors.go index da4f536b1..2407e9eee 100644 --- a/domain/consensus/constructors.go +++ b/domain/consensus/constructors.go @@ -4,8 +4,8 @@ import ( "math/big" "time" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // GHOSTDAGManagerConstructor is the function signature for a constructor of a type implementing model.GHOSTDAGManager diff --git a/domain/consensus/database/binaryserialization/hash.go b/domain/consensus/database/binaryserialization/hash.go index fc94a4680..8fdf6031c 100644 --- a/domain/consensus/database/binaryserialization/hash.go +++ b/domain/consensus/database/binaryserialization/hash.go @@ -1,7 +1,7 @@ package binaryserialization import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/domain/consensus/database/bucket.go b/domain/consensus/database/bucket.go index 62cf60644..64daaf881 100644 --- a/domain/consensus/database/bucket.go +++ b/domain/consensus/database/bucket.go @@ -1,8 +1,8 @@ package database import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" ) func dbBucketToDatabaseBucket(bucket model.DBBucket) *database.Bucket { diff --git a/domain/consensus/database/cursor.go b/domain/consensus/database/cursor.go index 936a051ad..17f5c4c50 100644 --- a/domain/consensus/database/cursor.go +++ b/domain/consensus/database/cursor.go @@ -1,8 +1,8 @@ package database import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" "github.com/pkg/errors" ) diff --git a/domain/consensus/database/dbmanager.go b/domain/consensus/database/dbmanager.go index 889131557..e6be19c9b 100644 --- a/domain/consensus/database/dbmanager.go +++ b/domain/consensus/database/dbmanager.go @@ -1,8 +1,8 @@ package database import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" ) type dbManager struct { diff --git a/domain/consensus/database/errors.go b/domain/consensus/database/errors.go index c3a479f79..f734b877c 100644 --- a/domain/consensus/database/errors.go +++ b/domain/consensus/database/errors.go @@ -1,7 +1,7 @@ package database import ( - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" ) // ErrNotFound denotes that the requested item was not diff --git a/domain/consensus/database/key.go b/domain/consensus/database/key.go index e3df32c78..315d05f87 100644 --- a/domain/consensus/database/key.go +++ b/domain/consensus/database/key.go @@ -1,8 +1,8 @@ package database import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" ) func dbKeyToDatabaseKey(key model.DBKey) *database.Key { diff --git a/domain/consensus/database/serialization/acceptancedata.go b/domain/consensus/database/serialization/acceptancedata.go index eb05b13e6..d67eef7bf 100644 --- a/domain/consensus/database/serialization/acceptancedata.go +++ b/domain/consensus/database/serialization/acceptancedata.go @@ -1,7 +1,7 @@ package serialization import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // DomainAcceptanceDataToDbAcceptanceData converts model.AcceptanceData to DbAcceptanceData diff --git a/domain/consensus/database/serialization/block.go b/domain/consensus/database/serialization/block.go index 958dd248f..4375ba945 100644 --- a/domain/consensus/database/serialization/block.go +++ b/domain/consensus/database/serialization/block.go @@ -1,7 +1,7 @@ package serialization import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // DomainBlockToDbBlock converts DomainBlocks to DbBlock diff --git a/domain/consensus/database/serialization/block_ghostdag_data.go b/domain/consensus/database/serialization/block_ghostdag_data.go index e894470e8..b8979980c 100644 --- a/domain/consensus/database/serialization/block_ghostdag_data.go +++ b/domain/consensus/database/serialization/block_ghostdag_data.go @@ -3,7 +3,7 @@ package serialization import ( "math/big" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // BlockGHOSTDAGDataToDBBlockGHOSTDAGData converts BlockGHOSTDAGData to DbBlockGhostdagData diff --git a/domain/consensus/database/serialization/blockheader.go b/domain/consensus/database/serialization/blockheader.go index c4e6c91c2..63b5a9316 100644 --- a/domain/consensus/database/serialization/blockheader.go +++ b/domain/consensus/database/serialization/blockheader.go @@ -4,8 +4,8 @@ import ( "math" "math/big" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/blockheader" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/blockheader" "github.com/pkg/errors" ) diff --git a/domain/consensus/database/serialization/blocklevelparents.go b/domain/consensus/database/serialization/blocklevelparents.go index 4461f4b3e..ca60fe571 100644 --- a/domain/consensus/database/serialization/blocklevelparents.go +++ b/domain/consensus/database/serialization/blocklevelparents.go @@ -1,7 +1,7 @@ package serialization import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // DbBlockLevelParentsToDomainBlockLevelParents converts a DbBlockLevelParents to a BlockLevelParents diff --git a/domain/consensus/database/serialization/blockrelations.go b/domain/consensus/database/serialization/blockrelations.go index f51bbb9c0..8b23771ca 100644 --- a/domain/consensus/database/serialization/blockrelations.go +++ b/domain/consensus/database/serialization/blockrelations.go @@ -1,7 +1,7 @@ package serialization import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" ) // DomainBlockRelationsToDbBlockRelations converts model.BlockRelations to DbBlockRelations diff --git a/domain/consensus/database/serialization/blockstatus.go b/domain/consensus/database/serialization/blockstatus.go index 1ec35f6a6..01c9309ef 100644 --- a/domain/consensus/database/serialization/blockstatus.go +++ b/domain/consensus/database/serialization/blockstatus.go @@ -1,7 +1,7 @@ package serialization import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // DomainBlockStatusToDbBlockStatus converts model.BlockStatus to DbBlockStatus diff --git a/domain/consensus/database/serialization/blues_anticone_sizes.go b/domain/consensus/database/serialization/blues_anticone_sizes.go index fb3eef72c..556b2cba8 100644 --- a/domain/consensus/database/serialization/blues_anticone_sizes.go +++ b/domain/consensus/database/serialization/blues_anticone_sizes.go @@ -1,7 +1,7 @@ package serialization import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/domain/consensus/database/serialization/blues_anticone_sizes_test.go b/domain/consensus/database/serialization/blues_anticone_sizes_test.go index 38e473b1f..12ffacfbc 100644 --- a/domain/consensus/database/serialization/blues_anticone_sizes_test.go +++ b/domain/consensus/database/serialization/blues_anticone_sizes_test.go @@ -3,7 +3,7 @@ package serialization import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // TestBlueAnticoneSizesSize tests that no data can be loss when converting externalapi.KType to the corresponding type in diff --git a/domain/consensus/database/serialization/daa_block.go b/domain/consensus/database/serialization/daa_block.go index 5370b5bc8..94132da53 100644 --- a/domain/consensus/database/serialization/daa_block.go +++ b/domain/consensus/database/serialization/daa_block.go @@ -1,7 +1,7 @@ package serialization import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // BlockGHOSTDAGDataHashPairToDbBlockGhostdagDataHashPair converts *externalapi.BlockGHOSTDAGDataHashPair to *DbBlockGHOSTDAGDataHashPair diff --git a/domain/consensus/database/serialization/dbobjects.proto b/domain/consensus/database/serialization/dbobjects.proto index e7f7af21b..a5538be5a 100644 --- a/domain/consensus/database/serialization/dbobjects.proto +++ b/domain/consensus/database/serialization/dbobjects.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package serialization; -option go_package = "github.com/c4ei/YunSeokYeol/serialization"; +option go_package = "github.com/c4ei/yunseokyeol/serialization"; message DbBlock { DbBlockHeader header = 1; diff --git a/domain/consensus/database/serialization/hash.go b/domain/consensus/database/serialization/hash.go index 419be6138..2a3e994a6 100644 --- a/domain/consensus/database/serialization/hash.go +++ b/domain/consensus/database/serialization/hash.go @@ -1,7 +1,7 @@ package serialization import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // DbHashToDomainHash converts a DbHash to a DomainHash diff --git a/domain/consensus/database/serialization/multiset.go b/domain/consensus/database/serialization/multiset.go index 554205012..74c2656da 100644 --- a/domain/consensus/database/serialization/multiset.go +++ b/domain/consensus/database/serialization/multiset.go @@ -1,8 +1,8 @@ package serialization import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/multiset" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/multiset" ) // MultisetToDBMultiset converts Multiset to DbMultiset diff --git a/domain/consensus/database/serialization/outpoint.go b/domain/consensus/database/serialization/outpoint.go index 102efd279..e51f8cd2b 100644 --- a/domain/consensus/database/serialization/outpoint.go +++ b/domain/consensus/database/serialization/outpoint.go @@ -1,7 +1,7 @@ package serialization import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // DomainOutpointToDbOutpoint converts DomainOutpoint to DbOutpoint diff --git a/domain/consensus/database/serialization/reachability_data.go b/domain/consensus/database/serialization/reachability_data.go index b9158c4cd..582772dd1 100644 --- a/domain/consensus/database/serialization/reachability_data.go +++ b/domain/consensus/database/serialization/reachability_data.go @@ -1,9 +1,9 @@ package serialization import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/reachabilitydata" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/reachabilitydata" ) // ReachablityDataToDBReachablityData converts ReachabilityData to DbReachabilityData diff --git a/domain/consensus/database/serialization/reachablity_interval.go b/domain/consensus/database/serialization/reachablity_interval.go index 5b0142416..a41305f3e 100644 --- a/domain/consensus/database/serialization/reachablity_interval.go +++ b/domain/consensus/database/serialization/reachablity_interval.go @@ -1,7 +1,7 @@ package serialization import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" ) func reachablityIntervalToDBReachablityInterval(reachabilityInterval *model.ReachabilityInterval) *DbReachabilityInterval { diff --git a/domain/consensus/database/serialization/subnetworkid.go b/domain/consensus/database/serialization/subnetworkid.go index 3501b7fe5..e771b1c35 100644 --- a/domain/consensus/database/serialization/subnetworkid.go +++ b/domain/consensus/database/serialization/subnetworkid.go @@ -1,8 +1,8 @@ package serialization import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" ) // DbSubnetworkIDToDomainSubnetworkID converts DbSubnetworkId to DomainSubnetworkID diff --git a/domain/consensus/database/serialization/tips.go b/domain/consensus/database/serialization/tips.go index 9c1889fc8..c930c306b 100644 --- a/domain/consensus/database/serialization/tips.go +++ b/domain/consensus/database/serialization/tips.go @@ -1,7 +1,7 @@ package serialization import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // TipsToDBTips converts a slice of hashes to DbTips diff --git a/domain/consensus/database/serialization/transaction.go b/domain/consensus/database/serialization/transaction.go index 77ab72fc3..ed0907c1c 100644 --- a/domain/consensus/database/serialization/transaction.go +++ b/domain/consensus/database/serialization/transaction.go @@ -3,7 +3,7 @@ package serialization import ( "math" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/domain/consensus/database/serialization/transactionid.go b/domain/consensus/database/serialization/transactionid.go index 0a29c680a..bcc214c74 100644 --- a/domain/consensus/database/serialization/transactionid.go +++ b/domain/consensus/database/serialization/transactionid.go @@ -1,8 +1,8 @@ package serialization import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionid" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionid" ) // DbTransactionIDToDomainTransactionID converts DbTransactionId to DomainTransactionID diff --git a/domain/consensus/database/serialization/utxo_collection.go b/domain/consensus/database/serialization/utxo_collection.go index 7c64f7f7e..c87c671e6 100644 --- a/domain/consensus/database/serialization/utxo_collection.go +++ b/domain/consensus/database/serialization/utxo_collection.go @@ -1,8 +1,8 @@ package serialization import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" ) func utxoCollectionToDBUTXOCollection(utxoCollection externalapi.UTXOCollection) ([]*DbUtxoCollectionItem, error) { diff --git a/domain/consensus/database/serialization/utxo_diff.go b/domain/consensus/database/serialization/utxo_diff.go index edce93bc3..65efd794a 100644 --- a/domain/consensus/database/serialization/utxo_diff.go +++ b/domain/consensus/database/serialization/utxo_diff.go @@ -1,8 +1,8 @@ package serialization import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" ) // UTXODiffToDBUTXODiff converts UTXODiff to DbUtxoDiff diff --git a/domain/consensus/database/serialization/utxo_entry.go b/domain/consensus/database/serialization/utxo_entry.go index 1afb63248..c126767a8 100644 --- a/domain/consensus/database/serialization/utxo_entry.go +++ b/domain/consensus/database/serialization/utxo_entry.go @@ -3,8 +3,8 @@ package serialization import ( "math" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" "github.com/pkg/errors" ) diff --git a/domain/consensus/database/transaction.go b/domain/consensus/database/transaction.go index 582b185b6..a67d5a520 100644 --- a/domain/consensus/database/transaction.go +++ b/domain/consensus/database/transaction.go @@ -1,8 +1,8 @@ package database import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" ) type dbTransaction struct { diff --git a/domain/consensus/datastructures/acceptancedatastore/acceptance_data_staging_shard.go b/domain/consensus/datastructures/acceptancedatastore/acceptance_data_staging_shard.go index 433104f30..845b2a2f5 100644 --- a/domain/consensus/datastructures/acceptancedatastore/acceptance_data_staging_shard.go +++ b/domain/consensus/datastructures/acceptancedatastore/acceptance_data_staging_shard.go @@ -1,8 +1,8 @@ package acceptancedatastore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type acceptanceDataStagingShard struct { diff --git a/domain/consensus/datastructures/acceptancedatastore/acceptance_data_store.go b/domain/consensus/datastructures/acceptancedatastore/acceptance_data_store.go index a08622ce8..23280ea42 100644 --- a/domain/consensus/datastructures/acceptancedatastore/acceptance_data_store.go +++ b/domain/consensus/datastructures/acceptancedatastore/acceptance_data_store.go @@ -1,11 +1,11 @@ package acceptancedatastore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/database/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/lrucache" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/database/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/lrucache" + "github.com/c4ei/yunseokyeol/util/staging" "google.golang.org/protobuf/proto" ) diff --git a/domain/consensus/datastructures/blockheaderstore/block_header_staging_shard.go b/domain/consensus/datastructures/blockheaderstore/block_header_staging_shard.go index 5bd61b749..6d30af2b6 100644 --- a/domain/consensus/datastructures/blockheaderstore/block_header_staging_shard.go +++ b/domain/consensus/datastructures/blockheaderstore/block_header_staging_shard.go @@ -1,8 +1,8 @@ package blockheaderstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type blockHeaderStagingShard struct { diff --git a/domain/consensus/datastructures/blockheaderstore/block_header_store.go b/domain/consensus/datastructures/blockheaderstore/block_header_store.go index 1bf88d144..3a3e3ecfd 100644 --- a/domain/consensus/datastructures/blockheaderstore/block_header_store.go +++ b/domain/consensus/datastructures/blockheaderstore/block_header_store.go @@ -1,11 +1,11 @@ package blockheaderstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/database/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/lrucache" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/database/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/lrucache" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/golang/protobuf/proto" ) diff --git a/domain/consensus/datastructures/blockrelationstore/block_relation_staging_shard.go b/domain/consensus/datastructures/blockrelationstore/block_relation_staging_shard.go index 0ae413792..b3dbfb525 100644 --- a/domain/consensus/datastructures/blockrelationstore/block_relation_staging_shard.go +++ b/domain/consensus/datastructures/blockrelationstore/block_relation_staging_shard.go @@ -1,8 +1,8 @@ package blockrelationstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type blockRelationStagingShard struct { diff --git a/domain/consensus/datastructures/blockrelationstore/block_relation_store.go b/domain/consensus/datastructures/blockrelationstore/block_relation_store.go index b25b18a4c..74af6bb20 100644 --- a/domain/consensus/datastructures/blockrelationstore/block_relation_store.go +++ b/domain/consensus/datastructures/blockrelationstore/block_relation_store.go @@ -1,11 +1,11 @@ package blockrelationstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/database/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/lrucache" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/database/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/lrucache" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/golang/protobuf/proto" ) diff --git a/domain/consensus/datastructures/blockstatusstore/block_status_staging_shard.go b/domain/consensus/datastructures/blockstatusstore/block_status_staging_shard.go index f861ce20d..72f88b1d2 100644 --- a/domain/consensus/datastructures/blockstatusstore/block_status_staging_shard.go +++ b/domain/consensus/datastructures/blockstatusstore/block_status_staging_shard.go @@ -1,8 +1,8 @@ package blockstatusstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type blockStatusStagingShard struct { diff --git a/domain/consensus/datastructures/blockstatusstore/block_status_store.go b/domain/consensus/datastructures/blockstatusstore/block_status_store.go index 74580db72..d31650ebb 100644 --- a/domain/consensus/datastructures/blockstatusstore/block_status_store.go +++ b/domain/consensus/datastructures/blockstatusstore/block_status_store.go @@ -1,11 +1,11 @@ package blockstatusstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/database/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/lrucache" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/database/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/lrucache" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/golang/protobuf/proto" ) diff --git a/domain/consensus/datastructures/blockstore/block_staging_shard.go b/domain/consensus/datastructures/blockstore/block_staging_shard.go index 97e52a7fa..961daf3ca 100644 --- a/domain/consensus/datastructures/blockstore/block_staging_shard.go +++ b/domain/consensus/datastructures/blockstore/block_staging_shard.go @@ -1,8 +1,8 @@ package blockstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type blockStagingShard struct { diff --git a/domain/consensus/datastructures/blockstore/block_store.go b/domain/consensus/datastructures/blockstore/block_store.go index 4e198cb5d..455670b70 100644 --- a/domain/consensus/datastructures/blockstore/block_store.go +++ b/domain/consensus/datastructures/blockstore/block_store.go @@ -1,11 +1,11 @@ package blockstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/database/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/lrucache" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/database/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/lrucache" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/golang/protobuf/proto" "github.com/pkg/errors" ) diff --git a/domain/consensus/datastructures/blockwindowheapslicestore/block_window_heap_slice_staging_shard.go b/domain/consensus/datastructures/blockwindowheapslicestore/block_window_heap_slice_staging_shard.go index 45ff88310..be1cbf166 100644 --- a/domain/consensus/datastructures/blockwindowheapslicestore/block_window_heap_slice_staging_shard.go +++ b/domain/consensus/datastructures/blockwindowheapslicestore/block_window_heap_slice_staging_shard.go @@ -1,8 +1,8 @@ package blockwindowheapslicestore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type shardKey struct { diff --git a/domain/consensus/datastructures/blockwindowheapslicestore/block_window_heap_slice_store.go b/domain/consensus/datastructures/blockwindowheapslicestore/block_window_heap_slice_store.go index c493715c7..4ce1edf16 100644 --- a/domain/consensus/datastructures/blockwindowheapslicestore/block_window_heap_slice_store.go +++ b/domain/consensus/datastructures/blockwindowheapslicestore/block_window_heap_slice_store.go @@ -1,11 +1,11 @@ package blockwindowheapslicestore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/lrucachehashandwindowsizetoblockghostdagdatahashpairs" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/lrucachehashandwindowsizetoblockghostdagdatahashpairs" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/pkg/errors" ) diff --git a/domain/consensus/datastructures/consensusstatestore/consensus_state_staging_shard.go b/domain/consensus/datastructures/consensusstatestore/consensus_state_staging_shard.go index b7dc0d3b6..37badfeb1 100644 --- a/domain/consensus/datastructures/consensusstatestore/consensus_state_staging_shard.go +++ b/domain/consensus/datastructures/consensusstatestore/consensus_state_staging_shard.go @@ -1,8 +1,8 @@ package consensusstatestore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type consensusStateStagingShard struct { diff --git a/domain/consensus/datastructures/consensusstatestore/consensus_state_store.go b/domain/consensus/datastructures/consensusstatestore/consensus_state_store.go index d56c00244..1abb4a65e 100644 --- a/domain/consensus/datastructures/consensusstatestore/consensus_state_store.go +++ b/domain/consensus/datastructures/consensusstatestore/consensus_state_store.go @@ -1,10 +1,10 @@ package consensusstatestore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxolrucache" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxolrucache" + "github.com/c4ei/yunseokyeol/util/staging" ) var importingPruningPointUTXOSetKeyName = []byte("importing-pruning-point-utxo-set") diff --git a/domain/consensus/datastructures/consensusstatestore/tips.go b/domain/consensus/datastructures/consensusstatestore/tips.go index c57b4036b..1891d5d79 100644 --- a/domain/consensus/datastructures/consensusstatestore/tips.go +++ b/domain/consensus/datastructures/consensusstatestore/tips.go @@ -1,9 +1,9 @@ package consensusstatestore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/database/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/database/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/golang/protobuf/proto" ) diff --git a/domain/consensus/datastructures/consensusstatestore/utxo.go b/domain/consensus/datastructures/consensusstatestore/utxo.go index 84770abdb..6c16dc78e 100644 --- a/domain/consensus/datastructures/consensusstatestore/utxo.go +++ b/domain/consensus/datastructures/consensusstatestore/utxo.go @@ -1,9 +1,9 @@ package consensusstatestore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" "github.com/pkg/errors" ) diff --git a/domain/consensus/datastructures/consensusstatestore/utxo_serialization.go b/domain/consensus/datastructures/consensusstatestore/utxo_serialization.go index 5b7d09dd8..a212025da 100644 --- a/domain/consensus/datastructures/consensusstatestore/utxo_serialization.go +++ b/domain/consensus/datastructures/consensusstatestore/utxo_serialization.go @@ -1,8 +1,8 @@ package consensusstatestore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/database/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/database/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/golang/protobuf/proto" ) diff --git a/domain/consensus/datastructures/consensusstatestore/virtual_utxo_set.go b/domain/consensus/datastructures/consensusstatestore/virtual_utxo_set.go index 862f9e0ce..a09993f5f 100644 --- a/domain/consensus/datastructures/consensusstatestore/virtual_utxo_set.go +++ b/domain/consensus/datastructures/consensusstatestore/virtual_utxo_set.go @@ -1,8 +1,8 @@ package consensusstatestore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/domain/consensus/datastructures/daablocksstore/daa_blocks_staging_shard.go b/domain/consensus/datastructures/daablocksstore/daa_blocks_staging_shard.go index 2346338b7..c62b1e965 100644 --- a/domain/consensus/datastructures/daablocksstore/daa_blocks_staging_shard.go +++ b/domain/consensus/datastructures/daablocksstore/daa_blocks_staging_shard.go @@ -1,9 +1,9 @@ package daablocksstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/database/binaryserialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/database/binaryserialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type daaBlocksStagingShard struct { diff --git a/domain/consensus/datastructures/daablocksstore/daa_blocks_store.go b/domain/consensus/datastructures/daablocksstore/daa_blocks_store.go index 9060f7cf9..21f20abd9 100644 --- a/domain/consensus/datastructures/daablocksstore/daa_blocks_store.go +++ b/domain/consensus/datastructures/daablocksstore/daa_blocks_store.go @@ -1,11 +1,11 @@ package daablocksstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/database/binaryserialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/lrucache" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/database/binaryserialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/lrucache" + "github.com/c4ei/yunseokyeol/util/staging" ) var daaScoreBucketName = []byte("daa-score") diff --git a/domain/consensus/datastructures/daawindowstore/daa_window_staging_shard.go b/domain/consensus/datastructures/daawindowstore/daa_window_staging_shard.go index 96da5ac33..4760c4ae9 100644 --- a/domain/consensus/datastructures/daawindowstore/daa_window_staging_shard.go +++ b/domain/consensus/datastructures/daawindowstore/daa_window_staging_shard.go @@ -1,9 +1,9 @@ package daawindowstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/database/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/database/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/golang/protobuf/proto" ) diff --git a/domain/consensus/datastructures/daawindowstore/daa_window_store.go b/domain/consensus/datastructures/daawindowstore/daa_window_store.go index 82c841bec..23dc27855 100644 --- a/domain/consensus/datastructures/daawindowstore/daa_window_store.go +++ b/domain/consensus/datastructures/daawindowstore/daa_window_store.go @@ -3,12 +3,12 @@ package daawindowstore import ( "encoding/binary" - "github.com/c4ei/YunSeokYeol/domain/consensus/database/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/lrucachehashpairtoblockghostdagdatahashpair" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/database/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/lrucachehashpairtoblockghostdagdatahashpair" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/golang/protobuf/proto" "github.com/pkg/errors" ) diff --git a/domain/consensus/datastructures/finalitystore/finality_staging_shard.go b/domain/consensus/datastructures/finalitystore/finality_staging_shard.go index 1b682d527..b82db0f05 100644 --- a/domain/consensus/datastructures/finalitystore/finality_staging_shard.go +++ b/domain/consensus/datastructures/finalitystore/finality_staging_shard.go @@ -1,8 +1,8 @@ package finalitystore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type finalityStagingShard struct { diff --git a/domain/consensus/datastructures/finalitystore/finality_store.go b/domain/consensus/datastructures/finalitystore/finality_store.go index b914f4b08..89a5193ea 100644 --- a/domain/consensus/datastructures/finalitystore/finality_store.go +++ b/domain/consensus/datastructures/finalitystore/finality_store.go @@ -1,10 +1,10 @@ package finalitystore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/lrucache" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/lrucache" + "github.com/c4ei/yunseokyeol/util/staging" ) var bucketName = []byte("finality-points") diff --git a/domain/consensus/datastructures/ghostdagdatastore/ghostadag_data_staging_shard.go b/domain/consensus/datastructures/ghostdagdatastore/ghostadag_data_staging_shard.go index 2989f928b..04b1ceddb 100644 --- a/domain/consensus/datastructures/ghostdagdatastore/ghostadag_data_staging_shard.go +++ b/domain/consensus/datastructures/ghostdagdatastore/ghostadag_data_staging_shard.go @@ -1,8 +1,8 @@ package ghostdagdatastore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type key struct { diff --git a/domain/consensus/datastructures/ghostdagdatastore/ghostdag_data_store.go b/domain/consensus/datastructures/ghostdagdatastore/ghostdag_data_store.go index 8bb977161..5e4ea6aea 100644 --- a/domain/consensus/datastructures/ghostdagdatastore/ghostdag_data_store.go +++ b/domain/consensus/datastructures/ghostdagdatastore/ghostdag_data_store.go @@ -1,11 +1,11 @@ package ghostdagdatastore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/database/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/lrucacheghostdagdata" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/database/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/lrucacheghostdagdata" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/golang/protobuf/proto" ) diff --git a/domain/consensus/datastructures/headersselectedchainstore/headers_selected_chain_staging_shard.go b/domain/consensus/datastructures/headersselectedchainstore/headers_selected_chain_staging_shard.go index 75625f0e9..a376ba711 100644 --- a/domain/consensus/datastructures/headersselectedchainstore/headers_selected_chain_staging_shard.go +++ b/domain/consensus/datastructures/headersselectedchainstore/headers_selected_chain_staging_shard.go @@ -1,9 +1,9 @@ package headersselectedchainstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/database/binaryserialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/database/binaryserialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type headersSelectedChainStagingShard struct { diff --git a/domain/consensus/datastructures/headersselectedchainstore/headers_selected_chain_store.go b/domain/consensus/datastructures/headersselectedchainstore/headers_selected_chain_store.go index e2931f1a0..1efc96ec1 100644 --- a/domain/consensus/datastructures/headersselectedchainstore/headers_selected_chain_store.go +++ b/domain/consensus/datastructures/headersselectedchainstore/headers_selected_chain_store.go @@ -3,14 +3,14 @@ package headersselectedchainstore import ( "encoding/binary" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/util/staging" - "github.com/c4ei/YunSeokYeol/domain/consensus/database" - "github.com/c4ei/YunSeokYeol/domain/consensus/database/binaryserialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/lrucache" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/lrucacheuint64tohash" + "github.com/c4ei/yunseokyeol/domain/consensus/database" + "github.com/c4ei/yunseokyeol/domain/consensus/database/binaryserialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/lrucache" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/lrucacheuint64tohash" "github.com/pkg/errors" ) diff --git a/domain/consensus/datastructures/headersselectedtipstore/headers_selected_tip_staging_shard.go b/domain/consensus/datastructures/headersselectedtipstore/headers_selected_tip_staging_shard.go index 630e97d8d..60a3d16f7 100644 --- a/domain/consensus/datastructures/headersselectedtipstore/headers_selected_tip_staging_shard.go +++ b/domain/consensus/datastructures/headersselectedtipstore/headers_selected_tip_staging_shard.go @@ -1,8 +1,8 @@ package headersselectedtipstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type headersSelectedTipStagingShard struct { diff --git a/domain/consensus/datastructures/headersselectedtipstore/headers_selected_tips_store.go b/domain/consensus/datastructures/headersselectedtipstore/headers_selected_tips_store.go index 5359acde2..294516cc1 100644 --- a/domain/consensus/datastructures/headersselectedtipstore/headers_selected_tips_store.go +++ b/domain/consensus/datastructures/headersselectedtipstore/headers_selected_tips_store.go @@ -1,10 +1,10 @@ package headersselectedtipstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/database/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/database/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/golang/protobuf/proto" ) diff --git a/domain/consensus/datastructures/mergedepthrootstore/merge_depth_root_staging_shard.go b/domain/consensus/datastructures/mergedepthrootstore/merge_depth_root_staging_shard.go index 1ff9472b5..76e7656cc 100644 --- a/domain/consensus/datastructures/mergedepthrootstore/merge_depth_root_staging_shard.go +++ b/domain/consensus/datastructures/mergedepthrootstore/merge_depth_root_staging_shard.go @@ -1,8 +1,8 @@ package mergedepthrootstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type mergeDepthRootStagingShard struct { diff --git a/domain/consensus/datastructures/mergedepthrootstore/merge_depth_root_store.go b/domain/consensus/datastructures/mergedepthrootstore/merge_depth_root_store.go index ed7c85230..6f7bfbd02 100644 --- a/domain/consensus/datastructures/mergedepthrootstore/merge_depth_root_store.go +++ b/domain/consensus/datastructures/mergedepthrootstore/merge_depth_root_store.go @@ -1,10 +1,10 @@ package mergedepthrootstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/lrucache" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/lrucache" + "github.com/c4ei/yunseokyeol/util/staging" ) var bucketName = []byte("merge-depth-roots") diff --git a/domain/consensus/datastructures/multisetstore/multiset_staging_shard.go b/domain/consensus/datastructures/multisetstore/multiset_staging_shard.go index b9961215f..a22552ccc 100644 --- a/domain/consensus/datastructures/multisetstore/multiset_staging_shard.go +++ b/domain/consensus/datastructures/multisetstore/multiset_staging_shard.go @@ -1,8 +1,8 @@ package multisetstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type multisetStagingShard struct { diff --git a/domain/consensus/datastructures/multisetstore/multiset_store.go b/domain/consensus/datastructures/multisetstore/multiset_store.go index 3756ccb1c..f819a125d 100644 --- a/domain/consensus/datastructures/multisetstore/multiset_store.go +++ b/domain/consensus/datastructures/multisetstore/multiset_store.go @@ -1,11 +1,11 @@ package multisetstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/database/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/lrucache" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/database/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/lrucache" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/golang/protobuf/proto" ) diff --git a/domain/consensus/datastructures/pruningstore/imported_pruning_point.go b/domain/consensus/datastructures/pruningstore/imported_pruning_point.go index c3183ed0a..a370671c8 100644 --- a/domain/consensus/datastructures/pruningstore/imported_pruning_point.go +++ b/domain/consensus/datastructures/pruningstore/imported_pruning_point.go @@ -1,9 +1,9 @@ package pruningstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/database/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/database/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/golang/protobuf/proto" "github.com/pkg/errors" ) diff --git a/domain/consensus/datastructures/pruningstore/pruning_staging_shard.go b/domain/consensus/datastructures/pruningstore/pruning_staging_shard.go index fd5fd504e..e1a343c40 100644 --- a/domain/consensus/datastructures/pruningstore/pruning_staging_shard.go +++ b/domain/consensus/datastructures/pruningstore/pruning_staging_shard.go @@ -1,8 +1,8 @@ package pruningstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type pruningStagingShard struct { diff --git a/domain/consensus/datastructures/pruningstore/pruning_store.go b/domain/consensus/datastructures/pruningstore/pruning_store.go index eb330bde5..274bd29cb 100644 --- a/domain/consensus/datastructures/pruningstore/pruning_store.go +++ b/domain/consensus/datastructures/pruningstore/pruning_store.go @@ -3,13 +3,13 @@ package pruningstore import ( "encoding/binary" - "github.com/c4ei/YunSeokYeol/domain/consensus/database" - "github.com/c4ei/YunSeokYeol/domain/consensus/database/binaryserialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/database/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/lrucacheuint64tohash" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/database" + "github.com/c4ei/yunseokyeol/domain/consensus/database/binaryserialization" + "github.com/c4ei/yunseokyeol/domain/consensus/database/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/lrucacheuint64tohash" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/golang/protobuf/proto" "github.com/pkg/errors" ) diff --git a/domain/consensus/datastructures/reachabilitydatastore/reachability_data_staging_shard.go b/domain/consensus/datastructures/reachabilitydatastore/reachability_data_staging_shard.go index bea39f5ec..aa7e391bd 100644 --- a/domain/consensus/datastructures/reachabilitydatastore/reachability_data_staging_shard.go +++ b/domain/consensus/datastructures/reachabilitydatastore/reachability_data_staging_shard.go @@ -1,8 +1,8 @@ package reachabilitydatastore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type reachabilityDataStagingShard struct { diff --git a/domain/consensus/datastructures/reachabilitydatastore/reachability_data_store.go b/domain/consensus/datastructures/reachabilitydatastore/reachability_data_store.go index 8acfb0748..c8e1eeecc 100644 --- a/domain/consensus/datastructures/reachabilitydatastore/reachability_data_store.go +++ b/domain/consensus/datastructures/reachabilitydatastore/reachability_data_store.go @@ -1,12 +1,12 @@ package reachabilitydatastore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/database/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/lrucache" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/database/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/lrucache" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/golang/protobuf/proto" "github.com/pkg/errors" ) diff --git a/domain/consensus/datastructures/utxodiffstore/utxo_diff_staging_shard.go b/domain/consensus/datastructures/utxodiffstore/utxo_diff_staging_shard.go index debdbc98a..954c94f98 100644 --- a/domain/consensus/datastructures/utxodiffstore/utxo_diff_staging_shard.go +++ b/domain/consensus/datastructures/utxodiffstore/utxo_diff_staging_shard.go @@ -1,8 +1,8 @@ package utxodiffstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type utxoDiffStagingShard struct { diff --git a/domain/consensus/datastructures/utxodiffstore/utxo_diff_store.go b/domain/consensus/datastructures/utxodiffstore/utxo_diff_store.go index 02209acfc..a5588f13f 100644 --- a/domain/consensus/datastructures/utxodiffstore/utxo_diff_store.go +++ b/domain/consensus/datastructures/utxodiffstore/utxo_diff_store.go @@ -1,11 +1,11 @@ package utxodiffstore import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/database/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/lrucache" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/database/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/lrucache" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/golang/protobuf/proto" "github.com/pkg/errors" ) diff --git a/domain/consensus/factory.go b/domain/consensus/factory.go index 15af24477..3490bdc0d 100644 --- a/domain/consensus/factory.go +++ b/domain/consensus/factory.go @@ -5,57 +5,57 @@ import ( "os" "sync" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/blockwindowheapslicestore" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/daawindowstore" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/mergedepthrootstore" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/blockparentbuilder" - parentssanager "github.com/c4ei/YunSeokYeol/domain/consensus/processes/parentsmanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/pruningproofmanager" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/blockwindowheapslicestore" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/daawindowstore" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/mergedepthrootstore" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/blockparentbuilder" + parentssanager "github.com/c4ei/yunseokyeol/domain/consensus/processes/parentsmanager" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/pruningproofmanager" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/domain/prefixmanager/prefix" - "github.com/c4ei/YunSeokYeol/util/txmass" + "github.com/c4ei/yunseokyeol/domain/prefixmanager/prefix" + "github.com/c4ei/yunseokyeol/util/txmass" - consensusdatabase "github.com/c4ei/YunSeokYeol/domain/consensus/database" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/acceptancedatastore" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/blockheaderstore" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/blockrelationstore" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/blockstatusstore" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/blockstore" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/consensusstatestore" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/daablocksstore" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/finalitystore" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/ghostdagdatastore" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/headersselectedchainstore" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/headersselectedtipstore" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/multisetstore" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/pruningstore" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/reachabilitydatastore" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/utxodiffstore" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/blockbuilder" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/blockprocessor" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/blockvalidator" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/coinbasemanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/consensusstatemanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/dagtopologymanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/dagtraversalmanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/difficultymanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/finalitymanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/ghostdagmanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/headersselectedtipmanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/mergedepthmanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/pastmediantimemanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/pruningmanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/reachabilitymanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/syncmanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/transactionvalidator" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - infrastructuredatabase "github.com/c4ei/YunSeokYeol/infrastructure/db/database" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database/ldb" + consensusdatabase "github.com/c4ei/yunseokyeol/domain/consensus/database" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/acceptancedatastore" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/blockheaderstore" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/blockrelationstore" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/blockstatusstore" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/blockstore" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/consensusstatestore" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/daablocksstore" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/finalitystore" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/ghostdagdatastore" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/headersselectedchainstore" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/headersselectedtipstore" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/multisetstore" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/pruningstore" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/reachabilitydatastore" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/utxodiffstore" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/blockbuilder" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/blockprocessor" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/blockvalidator" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/coinbasemanager" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/consensusstatemanager" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/dagtopologymanager" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/dagtraversalmanager" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/difficultymanager" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/finalitymanager" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/ghostdagmanager" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/headersselectedtipmanager" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/mergedepthmanager" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/pastmediantimemanager" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/pruningmanager" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/reachabilitymanager" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/syncmanager" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/transactionvalidator" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + infrastructuredatabase "github.com/c4ei/yunseokyeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/db/database/ldb" ) const ( diff --git a/domain/consensus/factory_test.go b/domain/consensus/factory_test.go index 8f562fced..591e8bd06 100644 --- a/domain/consensus/factory_test.go +++ b/domain/consensus/factory_test.go @@ -4,10 +4,10 @@ import ( "io/ioutil" "testing" - "github.com/c4ei/YunSeokYeol/domain/prefixmanager/prefix" + "github.com/c4ei/yunseokyeol/domain/prefixmanager/prefix" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database/ldb" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/infrastructure/db/database/ldb" ) func TestNewConsensus(t *testing.T) { diff --git a/domain/consensus/finality_test.go b/domain/consensus/finality_test.go index dde348f03..979093eee 100644 --- a/domain/consensus/finality_test.go +++ b/domain/consensus/finality_test.go @@ -6,13 +6,13 @@ import ( "math/rand" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" "github.com/pkg/errors" ) diff --git a/domain/consensus/log.go b/domain/consensus/log.go index e53abc8a9..0a11de003 100644 --- a/domain/consensus/log.go +++ b/domain/consensus/log.go @@ -1,8 +1,8 @@ package consensus import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var log = logger.RegisterSubSystem("BDAG") diff --git a/domain/consensus/model/acceptancedata_equal_clone_test.go b/domain/consensus/model/acceptancedata_equal_clone_test.go index 681038f5a..69b1ab011 100644 --- a/domain/consensus/model/acceptancedata_equal_clone_test.go +++ b/domain/consensus/model/acceptancedata_equal_clone_test.go @@ -4,8 +4,8 @@ import ( "reflect" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" ) func initTestTransactionAcceptanceDataForClone() []*externalapi.TransactionAcceptanceData { diff --git a/domain/consensus/model/block_heap.go b/domain/consensus/model/block_heap.go index 0a5c9959c..4d67aa676 100644 --- a/domain/consensus/model/block_heap.go +++ b/domain/consensus/model/block_heap.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // BlockHeap represents a heap of block hashes, providing a priority-queue functionality type BlockHeap interface { diff --git a/domain/consensus/model/blockiterator.go b/domain/consensus/model/blockiterator.go index 1efd2d9cb..5cca5a802 100644 --- a/domain/consensus/model/blockiterator.go +++ b/domain/consensus/model/blockiterator.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // BlockIterator is an iterator over blocks according to some order. type BlockIterator interface { diff --git a/domain/consensus/model/blockrelations.go b/domain/consensus/model/blockrelations.go index 0d401d120..8256b96eb 100644 --- a/domain/consensus/model/blockrelations.go +++ b/domain/consensus/model/blockrelations.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // BlockRelations represents a block's parent/child relations type BlockRelations struct { diff --git a/domain/consensus/model/blockrelations_equal_clone_test.go b/domain/consensus/model/blockrelations_equal_clone_test.go index ef2d2d3a3..2b6860aa4 100644 --- a/domain/consensus/model/blockrelations_equal_clone_test.go +++ b/domain/consensus/model/blockrelations_equal_clone_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) func initTestBlockRelationsForClone() []*BlockRelations { diff --git a/domain/consensus/model/externalapi/block_equal_clone_test.go b/domain/consensus/model/externalapi/block_equal_clone_test.go index e6d8fb2cc..edcafb56a 100644 --- a/domain/consensus/model/externalapi/block_equal_clone_test.go +++ b/domain/consensus/model/externalapi/block_equal_clone_test.go @@ -5,8 +5,8 @@ import ( "reflect" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/blockheader" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/blockheader" ) type blockToCompare struct { diff --git a/domain/consensus/model/externalapi/transaction_equal_clone_test.go b/domain/consensus/model/externalapi/transaction_equal_clone_test.go index dcb519e98..5bc649c6f 100644 --- a/domain/consensus/model/externalapi/transaction_equal_clone_test.go +++ b/domain/consensus/model/externalapi/transaction_equal_clone_test.go @@ -4,8 +4,8 @@ import ( "reflect" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" ) // Changed fields of a test struct compared to a base test struct marked as "changed" and diff --git a/domain/consensus/model/interface_datastructures_acceptancedatastore.go b/domain/consensus/model/interface_datastructures_acceptancedatastore.go index 7b63536a8..1bc7e4bc2 100644 --- a/domain/consensus/model/interface_datastructures_acceptancedatastore.go +++ b/domain/consensus/model/interface_datastructures_acceptancedatastore.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // AcceptanceDataStore represents a store of AcceptanceData type AcceptanceDataStore interface { diff --git a/domain/consensus/model/interface_datastructures_blockheaderstore.go b/domain/consensus/model/interface_datastructures_blockheaderstore.go index 1dd614728..6141c1d66 100644 --- a/domain/consensus/model/interface_datastructures_blockheaderstore.go +++ b/domain/consensus/model/interface_datastructures_blockheaderstore.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // BlockHeaderStore represents a store of block headers type BlockHeaderStore interface { diff --git a/domain/consensus/model/interface_datastructures_blockrelationstore.go b/domain/consensus/model/interface_datastructures_blockrelationstore.go index eec49d10d..cb4956696 100644 --- a/domain/consensus/model/interface_datastructures_blockrelationstore.go +++ b/domain/consensus/model/interface_datastructures_blockrelationstore.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // BlockRelationStore represents a store of BlockRelations type BlockRelationStore interface { diff --git a/domain/consensus/model/interface_datastructures_blocks_with_trusted_data_daa_window_store.go b/domain/consensus/model/interface_datastructures_blocks_with_trusted_data_daa_window_store.go index 5300d514b..de5060d5b 100644 --- a/domain/consensus/model/interface_datastructures_blocks_with_trusted_data_daa_window_store.go +++ b/domain/consensus/model/interface_datastructures_blocks_with_trusted_data_daa_window_store.go @@ -1,7 +1,7 @@ package model import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // BlocksWithTrustedDataDAAWindowStore stores the DAA window of blocks with trusted data diff --git a/domain/consensus/model/interface_datastructures_blockstatusstore.go b/domain/consensus/model/interface_datastructures_blockstatusstore.go index 006f7b4e4..5bf0aa85f 100644 --- a/domain/consensus/model/interface_datastructures_blockstatusstore.go +++ b/domain/consensus/model/interface_datastructures_blockstatusstore.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // BlockStatusStore represents a store of BlockStatuses type BlockStatusStore interface { diff --git a/domain/consensus/model/interface_datastructures_blockstore.go b/domain/consensus/model/interface_datastructures_blockstore.go index 89e1f4e63..d309ddcaa 100644 --- a/domain/consensus/model/interface_datastructures_blockstore.go +++ b/domain/consensus/model/interface_datastructures_blockstore.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // BlockStore represents a store of blocks type BlockStore interface { diff --git a/domain/consensus/model/interface_datastructures_consensusstatestore.go b/domain/consensus/model/interface_datastructures_consensusstatestore.go index 95c70b5a8..bd795559e 100644 --- a/domain/consensus/model/interface_datastructures_consensusstatestore.go +++ b/domain/consensus/model/interface_datastructures_consensusstatestore.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // ConsensusStateStore represents a store for the current consensus state type ConsensusStateStore interface { diff --git a/domain/consensus/model/interface_datastructures_daablocksstore.go b/domain/consensus/model/interface_datastructures_daablocksstore.go index eefdadf09..a9588449d 100644 --- a/domain/consensus/model/interface_datastructures_daablocksstore.go +++ b/domain/consensus/model/interface_datastructures_daablocksstore.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // DAABlocksStore represents a store of ??? type DAABlocksStore interface { diff --git a/domain/consensus/model/interface_datastructures_finalitystore.go b/domain/consensus/model/interface_datastructures_finalitystore.go index 4e114da74..654cd3cbb 100644 --- a/domain/consensus/model/interface_datastructures_finalitystore.go +++ b/domain/consensus/model/interface_datastructures_finalitystore.go @@ -1,7 +1,7 @@ package model import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // FinalityStore represents a store for finality data diff --git a/domain/consensus/model/interface_datastructures_ghostdagdatastore.go b/domain/consensus/model/interface_datastructures_ghostdagdatastore.go index 992c8773f..71916625e 100644 --- a/domain/consensus/model/interface_datastructures_ghostdagdatastore.go +++ b/domain/consensus/model/interface_datastructures_ghostdagdatastore.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // GHOSTDAGDataStore represents a store of BlockGHOSTDAGData type GHOSTDAGDataStore interface { diff --git a/domain/consensus/model/interface_datastructures_headersselectedchainstore.go b/domain/consensus/model/interface_datastructures_headersselectedchainstore.go index ee25e2778..d51029245 100644 --- a/domain/consensus/model/interface_datastructures_headersselectedchainstore.go +++ b/domain/consensus/model/interface_datastructures_headersselectedchainstore.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // HeadersSelectedChainStore represents a store of the headers selected chain type HeadersSelectedChainStore interface { diff --git a/domain/consensus/model/interface_datastructures_headertipsstore.go b/domain/consensus/model/interface_datastructures_headertipsstore.go index 0c05988c0..c07fca3f2 100644 --- a/domain/consensus/model/interface_datastructures_headertipsstore.go +++ b/domain/consensus/model/interface_datastructures_headertipsstore.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // HeaderSelectedTipStore represents a store of the headers selected tip type HeaderSelectedTipStore interface { diff --git a/domain/consensus/model/interface_datastructures_mergedepthrootstore.go b/domain/consensus/model/interface_datastructures_mergedepthrootstore.go index 4f42e57c1..0cc9a2d2a 100644 --- a/domain/consensus/model/interface_datastructures_mergedepthrootstore.go +++ b/domain/consensus/model/interface_datastructures_mergedepthrootstore.go @@ -1,7 +1,7 @@ package model import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // MergeDepthRootStore represents a store for merge depth roots diff --git a/domain/consensus/model/interface_datastructures_multisetstore.go b/domain/consensus/model/interface_datastructures_multisetstore.go index 613362cf6..c4820435d 100644 --- a/domain/consensus/model/interface_datastructures_multisetstore.go +++ b/domain/consensus/model/interface_datastructures_multisetstore.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // MultisetStore represents a store of Multisets type MultisetStore interface { diff --git a/domain/consensus/model/interface_datastructures_pruningstore.go b/domain/consensus/model/interface_datastructures_pruningstore.go index 04fac3471..c9380bd1b 100644 --- a/domain/consensus/model/interface_datastructures_pruningstore.go +++ b/domain/consensus/model/interface_datastructures_pruningstore.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // PruningStore represents a store for the current pruning state type PruningStore interface { diff --git a/domain/consensus/model/interface_datastructures_reachabilitydatastore.go b/domain/consensus/model/interface_datastructures_reachabilitydatastore.go index 077d73138..228de15dc 100644 --- a/domain/consensus/model/interface_datastructures_reachabilitydatastore.go +++ b/domain/consensus/model/interface_datastructures_reachabilitydatastore.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // ReachabilityDataStore represents a store of ReachabilityData type ReachabilityDataStore interface { diff --git a/domain/consensus/model/interface_datastructures_utxodiffstore.go b/domain/consensus/model/interface_datastructures_utxodiffstore.go index f68906ca6..47c0d47fd 100644 --- a/domain/consensus/model/interface_datastructures_utxodiffstore.go +++ b/domain/consensus/model/interface_datastructures_utxodiffstore.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // UTXODiffStore represents a store of UTXODiffs type UTXODiffStore interface { diff --git a/domain/consensus/model/interface_datastructures_windowheapstore.go b/domain/consensus/model/interface_datastructures_windowheapstore.go index 9dab0b3c7..be7e6fd7d 100644 --- a/domain/consensus/model/interface_datastructures_windowheapstore.go +++ b/domain/consensus/model/interface_datastructures_windowheapstore.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // WindowHeapSliceStore caches the slices that are needed for the heap implementation of DAGTraversalManager.BlockWindow type WindowHeapSliceStore interface { diff --git a/domain/consensus/model/interface_processes_blockbuilder.go b/domain/consensus/model/interface_processes_blockbuilder.go index f9f86653a..1c12796a4 100644 --- a/domain/consensus/model/interface_processes_blockbuilder.go +++ b/domain/consensus/model/interface_processes_blockbuilder.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // BlockBuilder is responsible for creating blocks from the current state type BlockBuilder interface { diff --git a/domain/consensus/model/interface_processes_blockparentbuilder.go b/domain/consensus/model/interface_processes_blockparentbuilder.go index 79798f91e..13c6d4991 100644 --- a/domain/consensus/model/interface_processes_blockparentbuilder.go +++ b/domain/consensus/model/interface_processes_blockparentbuilder.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // BlockParentBuilder exposes a method to build super-block parents for // a given set of direct parents diff --git a/domain/consensus/model/interface_processes_blockprocessor.go b/domain/consensus/model/interface_processes_blockprocessor.go index fe95f818e..bab907db8 100644 --- a/domain/consensus/model/interface_processes_blockprocessor.go +++ b/domain/consensus/model/interface_processes_blockprocessor.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // BlockProcessor is responsible for processing incoming blocks type BlockProcessor interface { diff --git a/domain/consensus/model/interface_processes_blockvalidator.go b/domain/consensus/model/interface_processes_blockvalidator.go index 707adbcc8..42b9c0b2f 100644 --- a/domain/consensus/model/interface_processes_blockvalidator.go +++ b/domain/consensus/model/interface_processes_blockvalidator.go @@ -1,7 +1,7 @@ package model import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // BlockValidator exposes a set of validation classes, after which diff --git a/domain/consensus/model/interface_processes_coinbasemanager.go b/domain/consensus/model/interface_processes_coinbasemanager.go index 011dff205..788826c48 100644 --- a/domain/consensus/model/interface_processes_coinbasemanager.go +++ b/domain/consensus/model/interface_processes_coinbasemanager.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // CoinbaseManager exposes methods for handling blocks' // coinbase transactions diff --git a/domain/consensus/model/interface_processes_consensusstatemanager.go b/domain/consensus/model/interface_processes_consensusstatemanager.go index 216959fb2..2f5bb911e 100644 --- a/domain/consensus/model/interface_processes_consensusstatemanager.go +++ b/domain/consensus/model/interface_processes_consensusstatemanager.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // ConsensusStateManager manages the node's consensus state type ConsensusStateManager interface { diff --git a/domain/consensus/model/interface_processes_dagtopologymanager.go b/domain/consensus/model/interface_processes_dagtopologymanager.go index 2cd30d089..36cbeb641 100644 --- a/domain/consensus/model/interface_processes_dagtopologymanager.go +++ b/domain/consensus/model/interface_processes_dagtopologymanager.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // DAGTopologyManager exposes methods for querying relationships // between blocks in the DAG diff --git a/domain/consensus/model/interface_processes_dagtraversalmanager.go b/domain/consensus/model/interface_processes_dagtraversalmanager.go index 94d23f624..7d90d0528 100644 --- a/domain/consensus/model/interface_processes_dagtraversalmanager.go +++ b/domain/consensus/model/interface_processes_dagtraversalmanager.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // DAGTraversalManager exposes methods for traversing blocks // in the DAG diff --git a/domain/consensus/model/interface_processes_difficultymanager.go b/domain/consensus/model/interface_processes_difficultymanager.go index a3c8268f1..e3bf6c397 100644 --- a/domain/consensus/model/interface_processes_difficultymanager.go +++ b/domain/consensus/model/interface_processes_difficultymanager.go @@ -1,7 +1,7 @@ package model import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // DifficultyManager provides a method to resolve the diff --git a/domain/consensus/model/interface_processes_finalitymanager.go b/domain/consensus/model/interface_processes_finalitymanager.go index 98ca69603..d144b2a08 100644 --- a/domain/consensus/model/interface_processes_finalitymanager.go +++ b/domain/consensus/model/interface_processes_finalitymanager.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // FinalityManager provides method to validate that a block does not violate finality type FinalityManager interface { diff --git a/domain/consensus/model/interface_processes_ghostdagmanager.go b/domain/consensus/model/interface_processes_ghostdagmanager.go index f38887f35..988b1329d 100644 --- a/domain/consensus/model/interface_processes_ghostdagmanager.go +++ b/domain/consensus/model/interface_processes_ghostdagmanager.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // GHOSTDAGManager resolves and manages GHOSTDAG block data type GHOSTDAGManager interface { diff --git a/domain/consensus/model/interface_processes_headertipsmanager.go b/domain/consensus/model/interface_processes_headertipsmanager.go index 0179cad3f..9e123fbd6 100644 --- a/domain/consensus/model/interface_processes_headertipsmanager.go +++ b/domain/consensus/model/interface_processes_headertipsmanager.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // HeadersSelectedTipManager manages the state of the headers selected tip type HeadersSelectedTipManager interface { diff --git a/domain/consensus/model/interface_processes_mergedepthmanager.go b/domain/consensus/model/interface_processes_mergedepthmanager.go index df4b091fe..62068a3b1 100644 --- a/domain/consensus/model/interface_processes_mergedepthmanager.go +++ b/domain/consensus/model/interface_processes_mergedepthmanager.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // MergeDepthManager is used to validate mergeDepth for blocks type MergeDepthManager interface { diff --git a/domain/consensus/model/interface_processes_parentsmanager.go b/domain/consensus/model/interface_processes_parentsmanager.go index 270ec25eb..279529bbb 100644 --- a/domain/consensus/model/interface_processes_parentsmanager.go +++ b/domain/consensus/model/interface_processes_parentsmanager.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // ParentsManager lets is a wrapper above header parents that replaces empty parents with genesis when needed. type ParentsManager interface { diff --git a/domain/consensus/model/interface_processes_pastmediantimemanager.go b/domain/consensus/model/interface_processes_pastmediantimemanager.go index b344fe4ba..5d4c0836d 100644 --- a/domain/consensus/model/interface_processes_pastmediantimemanager.go +++ b/domain/consensus/model/interface_processes_pastmediantimemanager.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // PastMedianTimeManager provides a method to resolve the // past median time of a block diff --git a/domain/consensus/model/interface_processes_pruningmanager.go b/domain/consensus/model/interface_processes_pruningmanager.go index 0ac488e9c..d0e6b53bc 100644 --- a/domain/consensus/model/interface_processes_pruningmanager.go +++ b/domain/consensus/model/interface_processes_pruningmanager.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // PruningManager resolves and manages the current pruning point type PruningManager interface { diff --git a/domain/consensus/model/interface_processes_pruningproofmanager.go b/domain/consensus/model/interface_processes_pruningproofmanager.go index 6a9625408..a9584de39 100644 --- a/domain/consensus/model/interface_processes_pruningproofmanager.go +++ b/domain/consensus/model/interface_processes_pruningproofmanager.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // PruningProofManager builds, validates and applies pruning proofs. type PruningProofManager interface { diff --git a/domain/consensus/model/interface_processes_reachabilitytree.go b/domain/consensus/model/interface_processes_reachabilitytree.go index fa1e81cee..50f1cfd8e 100644 --- a/domain/consensus/model/interface_processes_reachabilitytree.go +++ b/domain/consensus/model/interface_processes_reachabilitytree.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // ReachabilityManager maintains a structure that allows to answer // reachability queries in sub-linear time diff --git a/domain/consensus/model/interface_processes_syncmanager.go b/domain/consensus/model/interface_processes_syncmanager.go index 68ac5b290..05ee1138f 100644 --- a/domain/consensus/model/interface_processes_syncmanager.go +++ b/domain/consensus/model/interface_processes_syncmanager.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // SyncManager exposes functions to support sync between kaspad nodes type SyncManager interface { diff --git a/domain/consensus/model/interface_processes_transactionvalidator.go b/domain/consensus/model/interface_processes_transactionvalidator.go index 4004bf180..0d69df21c 100644 --- a/domain/consensus/model/interface_processes_transactionvalidator.go +++ b/domain/consensus/model/interface_processes_transactionvalidator.go @@ -1,7 +1,7 @@ package model import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // TransactionValidator exposes a set of validation classes, after which diff --git a/domain/consensus/model/multiset.go b/domain/consensus/model/multiset.go index b2827ba97..b24998437 100644 --- a/domain/consensus/model/multiset.go +++ b/domain/consensus/model/multiset.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // Multiset represents a secp256k1 multiset type Multiset interface { diff --git a/domain/consensus/model/reachabilitydata.go b/domain/consensus/model/reachabilitydata.go index 3a15d9010..501363e1c 100644 --- a/domain/consensus/model/reachabilitydata.go +++ b/domain/consensus/model/reachabilitydata.go @@ -3,7 +3,7 @@ package model import ( "fmt" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // MutableReachabilityData represents a node in the reachability tree diff --git a/domain/consensus/model/subdag.go b/domain/consensus/model/subdag.go index 235b1c7f5..029831f58 100644 --- a/domain/consensus/model/subdag.go +++ b/domain/consensus/model/subdag.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // SubDAG represents a context-free representation of a partial DAG type SubDAG struct { diff --git a/domain/consensus/model/testapi/test_block_builder.go b/domain/consensus/model/testapi/test_block_builder.go index 3436c97ee..3aa751039 100644 --- a/domain/consensus/model/testapi/test_block_builder.go +++ b/domain/consensus/model/testapi/test_block_builder.go @@ -1,8 +1,8 @@ package testapi import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // TestBlockBuilder adds to the main BlockBuilder methods required by tests diff --git a/domain/consensus/model/testapi/test_consensus.go b/domain/consensus/model/testapi/test_consensus.go index d44462102..e5716f31a 100644 --- a/domain/consensus/model/testapi/test_consensus.go +++ b/domain/consensus/model/testapi/test_consensus.go @@ -3,10 +3,10 @@ package testapi import ( "io" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" ) // MineJSONBlockType indicates which type of blocks MineJSON mines diff --git a/domain/consensus/model/testapi/test_consensus_state_manager.go b/domain/consensus/model/testapi/test_consensus_state_manager.go index fa52c4b24..e17f3840d 100644 --- a/domain/consensus/model/testapi/test_consensus_state_manager.go +++ b/domain/consensus/model/testapi/test_consensus_state_manager.go @@ -1,8 +1,8 @@ package testapi import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // TestConsensusStateManager adds to the main ConsensusStateManager methods required by tests diff --git a/domain/consensus/model/testapi/test_reachability_manager.go b/domain/consensus/model/testapi/test_reachability_manager.go index 642bbb8b9..bf56f3e20 100644 --- a/domain/consensus/model/testapi/test_reachability_manager.go +++ b/domain/consensus/model/testapi/test_reachability_manager.go @@ -1,8 +1,8 @@ package testapi import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // TestReachabilityManager adds to the main ReachabilityManager methods required by tests diff --git a/domain/consensus/model/testapi/test_transaction_validator.go b/domain/consensus/model/testapi/test_transaction_validator.go index f9fd0d5d6..cd08a75be 100644 --- a/domain/consensus/model/testapi/test_transaction_validator.go +++ b/domain/consensus/model/testapi/test_transaction_validator.go @@ -1,8 +1,8 @@ package testapi import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" ) // TestTransactionValidator adds to the main TransactionValidator methods required by tests diff --git a/domain/consensus/model/utxo_diff_reversal_data.go b/domain/consensus/model/utxo_diff_reversal_data.go index 5729504ec..17b452d4c 100644 --- a/domain/consensus/model/utxo_diff_reversal_data.go +++ b/domain/consensus/model/utxo_diff_reversal_data.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // UTXODiffReversalData is used by ConsensusStateManager to reverse the UTXODiffs during a re-org type UTXODiffReversalData struct { diff --git a/domain/consensus/model/virtual.go b/domain/consensus/model/virtual.go index 2df0cf1f8..865373b69 100644 --- a/domain/consensus/model/virtual.go +++ b/domain/consensus/model/virtual.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // VirtualBlockHash is a marker hash for the virtual block var VirtualBlockHash = externalapi.NewDomainHashFromByteArray(&[externalapi.DomainHashSize]byte{ diff --git a/domain/consensus/processes/blockbuilder/block_builder.go b/domain/consensus/processes/blockbuilder/block_builder.go index 42177091e..4fe9015cd 100644 --- a/domain/consensus/processes/blockbuilder/block_builder.go +++ b/domain/consensus/processes/blockbuilder/block_builder.go @@ -4,17 +4,17 @@ import ( "math/big" "sort" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/blockheader" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/blockheader" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/merkle" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/merkle" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/mstime" ) type blockBuilder struct { diff --git a/domain/consensus/processes/blockbuilder/block_builder_test.go b/domain/consensus/processes/blockbuilder/block_builder_test.go index dc71a3704..0d7543652 100644 --- a/domain/consensus/processes/blockbuilder/block_builder_test.go +++ b/domain/consensus/processes/blockbuilder/block_builder_test.go @@ -5,12 +5,12 @@ import ( "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" ) func TestBuildBlockErrorCases(t *testing.T) { diff --git a/domain/consensus/processes/blockbuilder/log.go b/domain/consensus/processes/blockbuilder/log.go index 93190f1ce..8e8d7ac3c 100644 --- a/domain/consensus/processes/blockbuilder/log.go +++ b/domain/consensus/processes/blockbuilder/log.go @@ -1,7 +1,7 @@ package blockbuilder import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("BDAG") diff --git a/domain/consensus/processes/blockbuilder/test_block_builder.go b/domain/consensus/processes/blockbuilder/test_block_builder.go index b2e8ccca4..4a3457200 100644 --- a/domain/consensus/processes/blockbuilder/test_block_builder.go +++ b/domain/consensus/processes/blockbuilder/test_block_builder.go @@ -5,14 +5,14 @@ import ( "math/big" "sort" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/blockheader" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/blockheader" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/infrastructure/logger" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/blockparentbuilder/blockparentbuilder.go b/domain/consensus/processes/blockparentbuilder/blockparentbuilder.go index ee071e3d8..079529821 100644 --- a/domain/consensus/processes/blockparentbuilder/blockparentbuilder.go +++ b/domain/consensus/processes/blockparentbuilder/blockparentbuilder.go @@ -1,10 +1,10 @@ package blockparentbuilder import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashset" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashset" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/blockprocessor/blocklogger/blocklogger.go b/domain/consensus/processes/blockprocessor/blocklogger/blocklogger.go index d3fb36df5..97d54705f 100644 --- a/domain/consensus/processes/blockprocessor/blocklogger/blocklogger.go +++ b/domain/consensus/processes/blockprocessor/blocklogger/blocklogger.go @@ -7,8 +7,8 @@ package blocklogger import ( "time" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/util/mstime" ) // BlockLogger is a type tracking the amount of blocks/headers/transactions to log the time it took to receive them diff --git a/domain/consensus/processes/blockprocessor/blocklogger/log.go b/domain/consensus/processes/blockprocessor/blocklogger/log.go index abf08b97d..a1de914c6 100644 --- a/domain/consensus/processes/blockprocessor/blocklogger/log.go +++ b/domain/consensus/processes/blockprocessor/blocklogger/log.go @@ -5,7 +5,7 @@ package blocklogger import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("BDAG") diff --git a/domain/consensus/processes/blockprocessor/blockprocessor.go b/domain/consensus/processes/blockprocessor/blockprocessor.go index aeb907d4b..5ad818c48 100644 --- a/domain/consensus/processes/blockprocessor/blockprocessor.go +++ b/domain/consensus/processes/blockprocessor/blockprocessor.go @@ -3,10 +3,10 @@ package blockprocessor import ( "time" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/blockprocessor/blocklogger" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/blockprocessor/blocklogger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) // blockProcessor is responsible for processing incoming blocks diff --git a/domain/consensus/processes/blockprocessor/log.go b/domain/consensus/processes/blockprocessor/log.go index 4c61ef2cd..d100b32e0 100644 --- a/domain/consensus/processes/blockprocessor/log.go +++ b/domain/consensus/processes/blockprocessor/log.go @@ -1,7 +1,7 @@ package blockprocessor import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("BDAG") diff --git a/domain/consensus/processes/blockprocessor/validate_and_insert_block.go b/domain/consensus/processes/blockprocessor/validate_and_insert_block.go index 19b4dc9f8..273b1c744 100644 --- a/domain/consensus/processes/blockprocessor/validate_and_insert_block.go +++ b/domain/consensus/processes/blockprocessor/validate_and_insert_block.go @@ -5,16 +5,16 @@ import ( _ "embed" "fmt" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/multiset" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/difficulty" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/multiset" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/difficulty" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/pkg/errors" ) @@ -233,7 +233,7 @@ func (bp *blockProcessor) loadUTXODataForGenesis(stagingArea *model.StagingArea, // pruning point. // The actual UTXO set that fits Mainnet's genesis' UTXO commitment was removed from the codebase in order // to make reduce the consensus initialization time and the compiled binary size, but can be still - // found here for anyone to verify: https://github.com/c4ei/YunSeokYeol/blob/dbf18d8052f000ba0079be9e79b2d6f5a98b74ca/domain/consensus/processes/blockprocessor/resources/utxos.gz + // found here for anyone to verify: https://github.com/c4ei/yunseokyeol/blob/dbf18d8052f000ba0079be9e79b2d6f5a98b74ca/domain/consensus/processes/blockprocessor/resources/utxos.gz // 참고: 적용된 UTXO 집합 및 다중 집합은 UTXO 약속을 충족하지 않습니다. // 메인넷의 탄생. 그렇기 때문에 모든 블록은 제네시스 위에 구축될 것입니다. // 잘못된 UTXO 약속도 갖게 되며 합의에 도달할 수 없습니다. @@ -243,7 +243,7 @@ func (bp *blockProcessor) loadUTXODataForGenesis(stagingArea *model.StagingArea, // 가지치기 지점. // 메인넷 제네시스의 UTXO 공약에 맞는 실제 UTXO 세트는 순서대로 코드베이스에서 제거되었습니다. // 합의 초기화 시간과 컴파일된 바이너리 크기를 줄이기 위해 하지만 여전히 - // 누구나 확인할 수 있도록 여기에 있습니다: https://github.com/c4ei/YunSeokYeol/blob/dbf18d8052f000ba0079be9e79b2d6f5a98b74ca/domain/consensus/processes/blockprocessor/resources/utxos.gz + // 누구나 확인할 수 있도록 여기에 있습니다: https://github.com/c4ei/yunseokyeol/blob/dbf18d8052f000ba0079be9e79b2d6f5a98b74ca/domain/consensus/processes/blockprocessor/resources/utxos.gz bp.consensusStateStore.StageVirtualUTXODiff(stagingArea, utxo.NewUTXODiff()) bp.utxoDiffStore.Stage(stagingArea, blockHash, utxo.NewUTXODiff(), nil) bp.multisetStore.Stage(stagingArea, blockHash, multiset.New()) diff --git a/domain/consensus/processes/blockprocessor/validate_and_insert_block_test.go b/domain/consensus/processes/blockprocessor/validate_and_insert_block_test.go index 5dbea0e99..5f92563c8 100644 --- a/domain/consensus/processes/blockprocessor/validate_and_insert_block_test.go +++ b/domain/consensus/processes/blockprocessor/validate_and_insert_block_test.go @@ -4,15 +4,15 @@ import ( "strings" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/blockheader" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/merkle" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/blockheader" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/merkle" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/blockprocessor/validate_and_insert_block_with_trusted_data.go b/domain/consensus/processes/blockprocessor/validate_and_insert_block_with_trusted_data.go index f3b9d66d5..ec28673a5 100644 --- a/domain/consensus/processes/blockprocessor/validate_and_insert_block_with_trusted_data.go +++ b/domain/consensus/processes/blockprocessor/validate_and_insert_block_with_trusted_data.go @@ -1,10 +1,10 @@ package blockprocessor import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" ) func (bp *blockProcessor) validateAndInsertBlockWithTrustedData(stagingArea *model.StagingArea, diff --git a/domain/consensus/processes/blockprocessor/validate_and_insert_imported_pruning_point.go b/domain/consensus/processes/blockprocessor/validate_and_insert_imported_pruning_point.go index 476096c5d..d2d7722e2 100644 --- a/domain/consensus/processes/blockprocessor/validate_and_insert_imported_pruning_point.go +++ b/domain/consensus/processes/blockprocessor/validate_and_insert_imported_pruning_point.go @@ -1,9 +1,9 @@ package blockprocessor import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/blockprocessor/validate_and_insert_imported_pruning_point_test.go b/domain/consensus/processes/blockprocessor/validate_and_insert_imported_pruning_point_test.go index 7823a739a..1f2fd2880 100644 --- a/domain/consensus/processes/blockprocessor/validate_and_insert_imported_pruning_point_test.go +++ b/domain/consensus/processes/blockprocessor/validate_and_insert_imported_pruning_point_test.go @@ -5,18 +5,18 @@ import ( "testing" "time" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/blockprocessor/validate_block.go b/domain/consensus/processes/blockprocessor/validate_block.go index 852d58ca2..e66debca7 100644 --- a/domain/consensus/processes/blockprocessor/validate_block.go +++ b/domain/consensus/processes/blockprocessor/validate_block.go @@ -1,11 +1,11 @@ package blockprocessor import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/blockvalidator/block_body_in_context.go b/domain/consensus/processes/blockvalidator/block_body_in_context.go index 4ccba9a3f..b45fc9980 100644 --- a/domain/consensus/processes/blockvalidator/block_body_in_context.go +++ b/domain/consensus/processes/blockvalidator/block_body_in_context.go @@ -1,12 +1,12 @@ package blockvalidator import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/virtual" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/virtual" + "github.com/c4ei/yunseokyeol/infrastructure/logger" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/blockvalidator/block_body_in_context_test.go b/domain/consensus/processes/blockvalidator/block_body_in_context_test.go index 57c3ecfe1..c1d7708da 100644 --- a/domain/consensus/processes/blockvalidator/block_body_in_context_test.go +++ b/domain/consensus/processes/blockvalidator/block_body_in_context_test.go @@ -3,14 +3,14 @@ package blockvalidator_test import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/blockvalidator/block_body_in_isolation.go b/domain/consensus/processes/blockvalidator/block_body_in_isolation.go index 5037f93c7..af1ecd365 100644 --- a/domain/consensus/processes/blockvalidator/block_body_in_isolation.go +++ b/domain/consensus/processes/blockvalidator/block_body_in_isolation.go @@ -1,14 +1,14 @@ package blockvalidator import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/merkle" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/merkle" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/infrastructure/logger" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/blockvalidator/block_body_in_isolation_test.go b/domain/consensus/processes/blockvalidator/block_body_in_isolation_test.go index bf692e917..bdfda0cd7 100644 --- a/domain/consensus/processes/blockvalidator/block_body_in_isolation_test.go +++ b/domain/consensus/processes/blockvalidator/block_body_in_isolation_test.go @@ -8,18 +8,18 @@ import ( "runtime" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/blockheader" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/merkle" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/blockheader" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/merkle" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/blockvalidator/block_header_in_context.go b/domain/consensus/processes/blockvalidator/block_header_in_context.go index d0fe9fda4..5330ead5e 100644 --- a/domain/consensus/processes/blockvalidator/block_header_in_context.go +++ b/domain/consensus/processes/blockvalidator/block_header_in_context.go @@ -3,11 +3,11 @@ package blockvalidator import ( "fmt" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/infrastructure/logger" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/blockvalidator/block_header_in_context_test.go b/domain/consensus/processes/blockvalidator/block_header_in_context_test.go index e07fd6eb2..22000b3ef 100644 --- a/domain/consensus/processes/blockvalidator/block_header_in_context_test.go +++ b/domain/consensus/processes/blockvalidator/block_header_in_context_test.go @@ -5,16 +5,16 @@ import ( "math/big" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/blockheader" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/blockheader" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" ) func TestValidateMedianTime(t *testing.T) { diff --git a/domain/consensus/processes/blockvalidator/block_header_in_isolation.go b/domain/consensus/processes/blockvalidator/block_header_in_isolation.go index 164d9f9d8..f0e3bd76a 100644 --- a/domain/consensus/processes/blockvalidator/block_header_in_isolation.go +++ b/domain/consensus/processes/blockvalidator/block_header_in_isolation.go @@ -1,13 +1,13 @@ package blockvalidator import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/mstime" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/blockvalidator/block_header_in_isolation_test.go b/domain/consensus/processes/blockvalidator/block_header_in_isolation_test.go index 6a206abfd..00513a642 100644 --- a/domain/consensus/processes/blockvalidator/block_header_in_isolation_test.go +++ b/domain/consensus/processes/blockvalidator/block_header_in_isolation_test.go @@ -5,15 +5,15 @@ import ( "runtime" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/blockheader" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/blockheader" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/util/mstime" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/blockvalidator/blockvalidator.go b/domain/consensus/processes/blockvalidator/blockvalidator.go index 2489d1444..54e0e3374 100644 --- a/domain/consensus/processes/blockvalidator/blockvalidator.go +++ b/domain/consensus/processes/blockvalidator/blockvalidator.go @@ -4,11 +4,11 @@ import ( "math/big" "time" - "github.com/c4ei/YunSeokYeol/util/txmass" + "github.com/c4ei/yunseokyeol/util/txmass" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/util/difficulty" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/util/difficulty" ) // blockValidator exposes a set of validation classes, after which diff --git a/domain/consensus/processes/blockvalidator/header_pruning_point.go b/domain/consensus/processes/blockvalidator/header_pruning_point.go index e184160d6..e8668ac4c 100644 --- a/domain/consensus/processes/blockvalidator/header_pruning_point.go +++ b/domain/consensus/processes/blockvalidator/header_pruning_point.go @@ -1,9 +1,9 @@ package blockvalidator import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/blockvalidator/log.go b/domain/consensus/processes/blockvalidator/log.go index b78a4be73..4a7f6383a 100644 --- a/domain/consensus/processes/blockvalidator/log.go +++ b/domain/consensus/processes/blockvalidator/log.go @@ -1,7 +1,7 @@ package blockvalidator import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("BLVA") diff --git a/domain/consensus/processes/blockvalidator/pruning_violation_proof_of_work_and_difficulty.go b/domain/consensus/processes/blockvalidator/pruning_violation_proof_of_work_and_difficulty.go index 0b98e1d16..6f3050ec0 100644 --- a/domain/consensus/processes/blockvalidator/pruning_violation_proof_of_work_and_difficulty.go +++ b/domain/consensus/processes/blockvalidator/pruning_violation_proof_of_work_and_difficulty.go @@ -1,13 +1,13 @@ package blockvalidator import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/pow" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/virtual" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/pow" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/virtual" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/logger" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/blockvalidator/pruning_violation_proof_of_work_and_difficulty_test.go b/domain/consensus/processes/blockvalidator/pruning_violation_proof_of_work_and_difficulty_test.go index c6dac69ae..1ad6dc5cb 100644 --- a/domain/consensus/processes/blockvalidator/pruning_violation_proof_of_work_and_difficulty_test.go +++ b/domain/consensus/processes/blockvalidator/pruning_violation_proof_of_work_and_difficulty_test.go @@ -7,18 +7,18 @@ import ( "testing" "time" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/blockheader" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/merkle" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/mining" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/pow" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/util/difficulty" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/blockheader" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/merkle" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/mining" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/pow" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/util/difficulty" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/coinbasemanager/coinbasemanager.go b/domain/consensus/processes/coinbasemanager/coinbasemanager.go index 17820b972..9d1935586 100644 --- a/domain/consensus/processes/coinbasemanager/coinbasemanager.go +++ b/domain/consensus/processes/coinbasemanager/coinbasemanager.go @@ -3,13 +3,13 @@ package coinbasemanager import ( "math" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashset" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashset" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/coinbasemanager/coinbasemanager_external_test.go b/domain/consensus/processes/coinbasemanager/coinbasemanager_external_test.go index 3930a4e7d..a2f031c6e 100644 --- a/domain/consensus/processes/coinbasemanager/coinbasemanager_external_test.go +++ b/domain/consensus/processes/coinbasemanager/coinbasemanager_external_test.go @@ -3,10 +3,10 @@ package coinbasemanager_test import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" ) func TestExtractCoinbaseDataBlueScoreAndSubsidy(t *testing.T) { diff --git a/domain/consensus/processes/coinbasemanager/coinbasemanager_test.go b/domain/consensus/processes/coinbasemanager/coinbasemanager_test.go index e0a5ec6d9..dae77a89e 100644 --- a/domain/consensus/processes/coinbasemanager/coinbasemanager_test.go +++ b/domain/consensus/processes/coinbasemanager/coinbasemanager_test.go @@ -4,9 +4,9 @@ import ( "strconv" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/dagconfig" ) func TestCalcDeflationaryPeriodBlockSubsidy(t *testing.T) { diff --git a/domain/consensus/processes/coinbasemanager/payload.go b/domain/consensus/processes/coinbasemanager/payload.go index de26da4e2..87136c525 100644 --- a/domain/consensus/processes/coinbasemanager/payload.go +++ b/domain/consensus/processes/coinbasemanager/payload.go @@ -3,8 +3,8 @@ package coinbasemanager import ( "encoding/binary" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/consensusstatemanager/add_block_to_virtual.go b/domain/consensus/processes/consensusstatemanager/add_block_to_virtual.go index 029e12b87..3304e216e 100644 --- a/domain/consensus/processes/consensusstatemanager/add_block_to_virtual.go +++ b/domain/consensus/processes/consensusstatemanager/add_block_to_virtual.go @@ -1,10 +1,10 @@ package consensusstatemanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) // AddBlock submits the given block to be added to the diff --git a/domain/consensus/processes/consensusstatemanager/add_block_to_virtual_test.go b/domain/consensus/processes/consensusstatemanager/add_block_to_virtual_test.go index bffe0cb80..5cae46e5c 100644 --- a/domain/consensus/processes/consensusstatemanager/add_block_to_virtual_test.go +++ b/domain/consensus/processes/consensusstatemanager/add_block_to_virtual_test.go @@ -3,13 +3,13 @@ package consensusstatemanager_test import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" ) func TestVirtualDiff(t *testing.T) { diff --git a/domain/consensus/processes/consensusstatemanager/calculate_past_utxo.go b/domain/consensus/processes/consensusstatemanager/calculate_past_utxo.go index c86658035..c7ac00750 100644 --- a/domain/consensus/processes/consensusstatemanager/calculate_past_utxo.go +++ b/domain/consensus/processes/consensusstatemanager/calculate_past_utxo.go @@ -1,15 +1,15 @@ package consensusstatemanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/infrastructure/logger" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" ) func (csm *consensusStateManager) CalculatePastUTXOAndAcceptanceData(stagingArea *model.StagingArea, diff --git a/domain/consensus/processes/consensusstatemanager/calculate_past_utxo_test.go b/domain/consensus/processes/consensusstatemanager/calculate_past_utxo_test.go index b58e10125..84f41ec7a 100644 --- a/domain/consensus/processes/consensusstatemanager/calculate_past_utxo_test.go +++ b/domain/consensus/processes/consensusstatemanager/calculate_past_utxo_test.go @@ -3,13 +3,13 @@ package consensusstatemanager_test import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/multiset" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/multiset" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" ) func TestUTXOCommitment(t *testing.T) { diff --git a/domain/consensus/processes/consensusstatemanager/check_finality_violation.go b/domain/consensus/processes/consensusstatemanager/check_finality_violation.go index 138aa2db9..435952ff1 100644 --- a/domain/consensus/processes/consensusstatemanager/check_finality_violation.go +++ b/domain/consensus/processes/consensusstatemanager/check_finality_violation.go @@ -1,8 +1,8 @@ package consensusstatemanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) func (csm *consensusStateManager) isViolatingFinality(stagingArea *model.StagingArea, blockHash *externalapi.DomainHash, diff --git a/domain/consensus/processes/consensusstatemanager/consensus_state_manager.go b/domain/consensus/processes/consensusstatemanager/consensus_state_manager.go index 3f33d012d..64a89f9a7 100644 --- a/domain/consensus/processes/consensusstatemanager/consensus_state_manager.go +++ b/domain/consensus/processes/consensusstatemanager/consensus_state_manager.go @@ -1,8 +1,8 @@ package consensusstatemanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // consensusStateManager manages the node's consensus state diff --git a/domain/consensus/processes/consensusstatemanager/find_selected_parent_chain_changes.go b/domain/consensus/processes/consensusstatemanager/find_selected_parent_chain_changes.go index b08d6d1c1..b3a4b499e 100644 --- a/domain/consensus/processes/consensusstatemanager/find_selected_parent_chain_changes.go +++ b/domain/consensus/processes/consensusstatemanager/find_selected_parent_chain_changes.go @@ -1,8 +1,8 @@ package consensusstatemanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) func (csm *consensusStateManager) GetVirtualSelectedParentChainFromBlock(stagingArea *model.StagingArea, blockHash *externalapi.DomainHash) (*externalapi.SelectedChainPath, error) { diff --git a/domain/consensus/processes/consensusstatemanager/find_selected_parent_chain_changes_test.go b/domain/consensus/processes/consensusstatemanager/find_selected_parent_chain_changes_test.go index a1cf1c4c4..29f29f53d 100644 --- a/domain/consensus/processes/consensusstatemanager/find_selected_parent_chain_changes_test.go +++ b/domain/consensus/processes/consensusstatemanager/find_selected_parent_chain_changes_test.go @@ -3,10 +3,10 @@ package consensusstatemanager_test import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" ) func TestCalculateChainPath(t *testing.T) { diff --git a/domain/consensus/processes/consensusstatemanager/import_pruning_utxo_set.go b/domain/consensus/processes/consensusstatemanager/import_pruning_utxo_set.go index 0d4278c9f..ccf4669a0 100644 --- a/domain/consensus/processes/consensusstatemanager/import_pruning_utxo_set.go +++ b/domain/consensus/processes/consensusstatemanager/import_pruning_utxo_set.go @@ -1,14 +1,14 @@ package consensusstatemanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/consensusstatemanager/log.go b/domain/consensus/processes/consensusstatemanager/log.go index 92b293f72..bec74d8c7 100644 --- a/domain/consensus/processes/consensusstatemanager/log.go +++ b/domain/consensus/processes/consensusstatemanager/log.go @@ -1,7 +1,7 @@ package consensusstatemanager import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("BDAG") diff --git a/domain/consensus/processes/consensusstatemanager/multisets.go b/domain/consensus/processes/consensusstatemanager/multisets.go index c9d95691e..75e46f21a 100644 --- a/domain/consensus/processes/consensusstatemanager/multisets.go +++ b/domain/consensus/processes/consensusstatemanager/multisets.go @@ -1,10 +1,10 @@ package consensusstatemanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" ) func (csm *consensusStateManager) calculateMultiset(stagingArea *model.StagingArea, diff --git a/domain/consensus/processes/consensusstatemanager/pick_virtual_parents.go b/domain/consensus/processes/consensusstatemanager/pick_virtual_parents.go index 0cf004d7d..07d99498e 100644 --- a/domain/consensus/processes/consensusstatemanager/pick_virtual_parents.go +++ b/domain/consensus/processes/consensusstatemanager/pick_virtual_parents.go @@ -1,13 +1,13 @@ package consensusstatemanager import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/math" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/math" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashset" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashset" ) func (csm *consensusStateManager) pickVirtualParents(stagingArea *model.StagingArea, tips []*externalapi.DomainHash) ([]*externalapi.DomainHash, error) { diff --git a/domain/consensus/processes/consensusstatemanager/populate_tx_with_utxo_entries.go b/domain/consensus/processes/consensusstatemanager/populate_tx_with_utxo_entries.go index 1f430f21a..d0ab11109 100644 --- a/domain/consensus/processes/consensusstatemanager/populate_tx_with_utxo_entries.go +++ b/domain/consensus/processes/consensusstatemanager/populate_tx_with_utxo_entries.go @@ -1,10 +1,10 @@ package consensusstatemanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" ) // PopulateTransactionWithUTXOEntries populates the transaction UTXO entries with data from the virtual's UTXO set. diff --git a/domain/consensus/processes/consensusstatemanager/resolve.go b/domain/consensus/processes/consensusstatemanager/resolve.go index f80accf9c..4b0fbbe83 100644 --- a/domain/consensus/processes/consensusstatemanager/resolve.go +++ b/domain/consensus/processes/consensusstatemanager/resolve.go @@ -3,10 +3,10 @@ package consensusstatemanager import ( "sort" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/consensusstatemanager/resolve_block_status.go b/domain/consensus/processes/consensusstatemanager/resolve_block_status.go index 4891bf316..e79155486 100644 --- a/domain/consensus/processes/consensusstatemanager/resolve_block_status.go +++ b/domain/consensus/processes/consensusstatemanager/resolve_block_status.go @@ -3,12 +3,12 @@ package consensusstatemanager import ( "fmt" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/util/staging" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/infrastructure/logger" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/consensusstatemanager/resolve_block_status_test.go b/domain/consensus/processes/consensusstatemanager/resolve_block_status_test.go index 637c41ead..2025c948a 100644 --- a/domain/consensus/processes/consensusstatemanager/resolve_block_status_test.go +++ b/domain/consensus/processes/consensusstatemanager/resolve_block_status_test.go @@ -4,18 +4,18 @@ import ( "errors" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" ) func TestDoubleSpends(t *testing.T) { diff --git a/domain/consensus/processes/consensusstatemanager/resolve_virtual_test.go b/domain/consensus/processes/consensusstatemanager/resolve_virtual_test.go index 8ed32eb1c..784277029 100644 --- a/domain/consensus/processes/consensusstatemanager/resolve_virtual_test.go +++ b/domain/consensus/processes/consensusstatemanager/resolve_virtual_test.go @@ -4,14 +4,14 @@ import ( "fmt" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" ) func TestAddBlockBetweenResolveVirtualCalls(t *testing.T) { diff --git a/domain/consensus/processes/consensusstatemanager/reverse_utxo_diffs.go b/domain/consensus/processes/consensusstatemanager/reverse_utxo_diffs.go index d8dfe3c96..c7eaa54ae 100644 --- a/domain/consensus/processes/consensusstatemanager/reverse_utxo_diffs.go +++ b/domain/consensus/processes/consensusstatemanager/reverse_utxo_diffs.go @@ -1,10 +1,10 @@ package consensusstatemanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/staging" ) func (csm *consensusStateManager) ReverseUTXODiffs(tipHash *externalapi.DomainHash, diff --git a/domain/consensus/processes/consensusstatemanager/reverse_utxo_diffs_test.go b/domain/consensus/processes/consensusstatemanager/reverse_utxo_diffs_test.go index 1b1f76138..cbcdfba6e 100644 --- a/domain/consensus/processes/consensusstatemanager/reverse_utxo_diffs_test.go +++ b/domain/consensus/processes/consensusstatemanager/reverse_utxo_diffs_test.go @@ -3,14 +3,14 @@ package consensusstatemanager_test import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" ) func TestReverseUTXODiffs(t *testing.T) { diff --git a/domain/consensus/processes/consensusstatemanager/test_consensus_state_manager.go b/domain/consensus/processes/consensusstatemanager/test_consensus_state_manager.go index fa87a2fce..4ec208afa 100644 --- a/domain/consensus/processes/consensusstatemanager/test_consensus_state_manager.go +++ b/domain/consensus/processes/consensusstatemanager/test_consensus_state_manager.go @@ -1,9 +1,9 @@ package consensusstatemanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" ) type testConsensusStateManager struct { diff --git a/domain/consensus/processes/consensusstatemanager/update_virtual.go b/domain/consensus/processes/consensusstatemanager/update_virtual.go index 768dc31d1..6e7cb4d4c 100644 --- a/domain/consensus/processes/consensusstatemanager/update_virtual.go +++ b/domain/consensus/processes/consensusstatemanager/update_virtual.go @@ -1,9 +1,9 @@ package consensusstatemanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) func (csm *consensusStateManager) updateVirtual(stagingArea *model.StagingArea, newBlockHash *externalapi.DomainHash, diff --git a/domain/consensus/processes/consensusstatemanager/utxo_diffs.go b/domain/consensus/processes/consensusstatemanager/utxo_diffs.go index d69cdf95c..efe0881cb 100644 --- a/domain/consensus/processes/consensusstatemanager/utxo_diffs.go +++ b/domain/consensus/processes/consensusstatemanager/utxo_diffs.go @@ -1,8 +1,8 @@ package consensusstatemanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) func (csm *consensusStateManager) stageDiff(stagingArea *model.StagingArea, blockHash *externalapi.DomainHash, diff --git a/domain/consensus/processes/consensusstatemanager/verify_and_build_utxo.go b/domain/consensus/processes/consensusstatemanager/verify_and_build_utxo.go index 4074f4ac6..0bdcc4d5d 100644 --- a/domain/consensus/processes/consensusstatemanager/verify_and_build_utxo.go +++ b/domain/consensus/processes/consensusstatemanager/verify_and_build_utxo.go @@ -3,15 +3,15 @@ package consensusstatemanager import ( "sort" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/merkle" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/merkle" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/consensusstatemanager/virtual_parents_test.go b/domain/consensus/processes/consensusstatemanager/virtual_parents_test.go index 4fcdfe60c..950e2272b 100644 --- a/domain/consensus/processes/consensusstatemanager/virtual_parents_test.go +++ b/domain/consensus/processes/consensusstatemanager/virtual_parents_test.go @@ -4,12 +4,12 @@ import ( "sort" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" ) func TestConsensusStateManager_pickVirtualParents(t *testing.T) { diff --git a/domain/consensus/processes/dagtopologymanager/dagtopologymanager.go b/domain/consensus/processes/dagtopologymanager/dagtopologymanager.go index d9420d4b6..0f5766c97 100644 --- a/domain/consensus/processes/dagtopologymanager/dagtopologymanager.go +++ b/domain/consensus/processes/dagtopologymanager/dagtopologymanager.go @@ -1,8 +1,8 @@ package dagtopologymanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/dagtopologymanager/dagtopologymanager_external_test.go b/domain/consensus/processes/dagtopologymanager/dagtopologymanager_external_test.go index 77120b62b..6c34539f3 100644 --- a/domain/consensus/processes/dagtopologymanager/dagtopologymanager_external_test.go +++ b/domain/consensus/processes/dagtopologymanager/dagtopologymanager_external_test.go @@ -3,11 +3,11 @@ package dagtopologymanager_test import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" ) func TestIsAncestorOf(t *testing.T) { diff --git a/domain/consensus/processes/dagtraversalmanager/anticone.go b/domain/consensus/processes/dagtraversalmanager/anticone.go index 88ff20576..91a7a2781 100644 --- a/domain/consensus/processes/dagtraversalmanager/anticone.go +++ b/domain/consensus/processes/dagtraversalmanager/anticone.go @@ -1,9 +1,9 @@ package dagtraversalmanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashset" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashset" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/dagtraversalmanager/block_heap.go b/domain/consensus/processes/dagtraversalmanager/block_heap.go index ab15c40fa..995ccd38c 100644 --- a/domain/consensus/processes/dagtraversalmanager/block_heap.go +++ b/domain/consensus/processes/dagtraversalmanager/block_heap.go @@ -3,8 +3,8 @@ package dagtraversalmanager import ( "container/heap" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) func blockGHOSTDAGDataHashPairLess(left, right *externalapi.BlockGHOSTDAGDataHashPair, gm model.GHOSTDAGManager) bool { diff --git a/domain/consensus/processes/dagtraversalmanager/dagtraversalmanager.go b/domain/consensus/processes/dagtraversalmanager/dagtraversalmanager.go index 1004afeb3..8976fe520 100644 --- a/domain/consensus/processes/dagtraversalmanager/dagtraversalmanager.go +++ b/domain/consensus/processes/dagtraversalmanager/dagtraversalmanager.go @@ -1,8 +1,8 @@ package dagtraversalmanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/dagtraversalmanager/dagtraversalmanager_test.go b/domain/consensus/processes/dagtraversalmanager/dagtraversalmanager_test.go index 0a024f175..b4f001758 100644 --- a/domain/consensus/processes/dagtraversalmanager/dagtraversalmanager_test.go +++ b/domain/consensus/processes/dagtraversalmanager/dagtraversalmanager_test.go @@ -3,11 +3,11 @@ package dagtraversalmanager_test import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" ) func TestLowestChainBlockAboveOrEqualToBlueScore(t *testing.T) { diff --git a/domain/consensus/processes/dagtraversalmanager/selected_child_iterator.go b/domain/consensus/processes/dagtraversalmanager/selected_child_iterator.go index 8bca90d4b..1b87a26d8 100644 --- a/domain/consensus/processes/dagtraversalmanager/selected_child_iterator.go +++ b/domain/consensus/processes/dagtraversalmanager/selected_child_iterator.go @@ -1,8 +1,8 @@ package dagtraversalmanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/dagtraversalmanager/window.go b/domain/consensus/processes/dagtraversalmanager/window.go index c0b28941c..04e045716 100644 --- a/domain/consensus/processes/dagtraversalmanager/window.go +++ b/domain/consensus/processes/dagtraversalmanager/window.go @@ -1,9 +1,9 @@ package dagtraversalmanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" ) func (dtm *dagTraversalManager) DAABlockWindow(stagingArea *model.StagingArea, highHash *externalapi.DomainHash) ([]*externalapi.DomainHash, error) { diff --git a/domain/consensus/processes/dagtraversalmanager/window_test.go b/domain/consensus/processes/dagtraversalmanager/window_test.go index e6637a0e3..f18a60a70 100644 --- a/domain/consensus/processes/dagtraversalmanager/window_test.go +++ b/domain/consensus/processes/dagtraversalmanager/window_test.go @@ -5,13 +5,13 @@ import ( "sort" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashset" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashset" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/dagconfig" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/difficultymanager/blockwindow.go b/domain/consensus/processes/difficultymanager/blockwindow.go index 999e8c05e..f94bffd31 100644 --- a/domain/consensus/processes/difficultymanager/blockwindow.go +++ b/domain/consensus/processes/difficultymanager/blockwindow.go @@ -4,9 +4,9 @@ import ( "math" "math/big" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/util/difficulty" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/util/difficulty" ) type difficultyBlock struct { diff --git a/domain/consensus/processes/difficultymanager/difficultymanager.go b/domain/consensus/processes/difficultymanager/difficultymanager.go index e59c92647..2b07acdd5 100644 --- a/domain/consensus/processes/difficultymanager/difficultymanager.go +++ b/domain/consensus/processes/difficultymanager/difficultymanager.go @@ -4,13 +4,13 @@ import ( "math/big" "time" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/math" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/math" - "github.com/c4ei/YunSeokYeol/util/difficulty" + "github.com/c4ei/yunseokyeol/util/difficulty" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // DifficultyManager provides a method to resolve the diff --git a/domain/consensus/processes/difficultymanager/difficultymanager_test.go b/domain/consensus/processes/difficultymanager/difficultymanager_test.go index 6875547a4..a1628ad89 100644 --- a/domain/consensus/processes/difficultymanager/difficultymanager_test.go +++ b/domain/consensus/processes/difficultymanager/difficultymanager_test.go @@ -4,17 +4,17 @@ import ( "testing" "time" - "github.com/c4ei/YunSeokYeol/util/difficulty" + "github.com/c4ei/yunseokyeol/util/difficulty" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/util/mstime" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/dagconfig" ) func TestDifficulty(t *testing.T) { diff --git a/domain/consensus/processes/difficultymanager/hashrate.go b/domain/consensus/processes/difficultymanager/hashrate.go index 7ea042585..d8ad7ab31 100644 --- a/domain/consensus/processes/difficultymanager/hashrate.go +++ b/domain/consensus/processes/difficultymanager/hashrate.go @@ -3,9 +3,9 @@ package difficultymanager import ( "math/big" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/infrastructure/logger" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/difficultymanager/log.go b/domain/consensus/processes/difficultymanager/log.go index 3155bd1ce..fcd984957 100644 --- a/domain/consensus/processes/difficultymanager/log.go +++ b/domain/consensus/processes/difficultymanager/log.go @@ -1,7 +1,7 @@ package difficultymanager import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("DAA") diff --git a/domain/consensus/processes/finalitymanager/finality_manager.go b/domain/consensus/processes/finalitymanager/finality_manager.go index 51804b8c7..da136c960 100644 --- a/domain/consensus/processes/finalitymanager/finality_manager.go +++ b/domain/consensus/processes/finalitymanager/finality_manager.go @@ -3,9 +3,9 @@ package finalitymanager import ( "errors" - "github.com/c4ei/YunSeokYeol/domain/consensus/database" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/database" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type finalityManager struct { diff --git a/domain/consensus/processes/finalitymanager/log.go b/domain/consensus/processes/finalitymanager/log.go index c2445e1c7..98405b883 100644 --- a/domain/consensus/processes/finalitymanager/log.go +++ b/domain/consensus/processes/finalitymanager/log.go @@ -1,7 +1,7 @@ package finalitymanager import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("BDAG") diff --git a/domain/consensus/processes/ghostdag2/ghostdagimpl.go b/domain/consensus/processes/ghostdag2/ghostdagimpl.go index 634bcca16..f65249a15 100644 --- a/domain/consensus/processes/ghostdag2/ghostdagimpl.go +++ b/domain/consensus/processes/ghostdag2/ghostdagimpl.go @@ -3,12 +3,12 @@ package ghostdag2 import ( "sort" - "github.com/c4ei/YunSeokYeol/util/difficulty" + "github.com/c4ei/yunseokyeol/util/difficulty" "math/big" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type ghostdagHelper struct { diff --git a/domain/consensus/processes/ghostdagmanager/compare.go b/domain/consensus/processes/ghostdagmanager/compare.go index 9d189e091..fd31b721a 100644 --- a/domain/consensus/processes/ghostdagmanager/compare.go +++ b/domain/consensus/processes/ghostdagmanager/compare.go @@ -1,8 +1,8 @@ package ghostdagmanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) func (gm *ghostdagManager) findSelectedParent(stagingArea *model.StagingArea, parentHashes []*externalapi.DomainHash) ( diff --git a/domain/consensus/processes/ghostdagmanager/ghostdag.go b/domain/consensus/processes/ghostdagmanager/ghostdag.go index 18b640c68..251dd0215 100644 --- a/domain/consensus/processes/ghostdagmanager/ghostdag.go +++ b/domain/consensus/processes/ghostdagmanager/ghostdag.go @@ -3,9 +3,9 @@ package ghostdagmanager import ( "math/big" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/util/difficulty" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/util/difficulty" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/ghostdagmanager/ghostdag_test.go b/domain/consensus/processes/ghostdagmanager/ghostdag_test.go index a166cb9d6..481f33bcd 100644 --- a/domain/consensus/processes/ghostdagmanager/ghostdag_test.go +++ b/domain/consensus/processes/ghostdagmanager/ghostdag_test.go @@ -9,15 +9,15 @@ import ( "reflect" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/ghostdag2" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/ghostdagmanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/blockheader" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/util/difficulty" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/ghostdag2" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/ghostdagmanager" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/blockheader" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/util/difficulty" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/ghostdagmanager/ghostdagmanager.go b/domain/consensus/processes/ghostdagmanager/ghostdagmanager.go index 421d97a38..bba17ed54 100644 --- a/domain/consensus/processes/ghostdagmanager/ghostdagmanager.go +++ b/domain/consensus/processes/ghostdagmanager/ghostdagmanager.go @@ -1,8 +1,8 @@ package ghostdagmanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // ghostdagManager resolves and manages GHOSTDAG block data diff --git a/domain/consensus/processes/ghostdagmanager/mergeset.go b/domain/consensus/processes/ghostdagmanager/mergeset.go index 88de44059..3558587d7 100644 --- a/domain/consensus/processes/ghostdagmanager/mergeset.go +++ b/domain/consensus/processes/ghostdagmanager/mergeset.go @@ -3,9 +3,9 @@ package ghostdagmanager import ( "sort" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) func (gm *ghostdagManager) mergeSetWithoutSelectedParent(stagingArea *model.StagingArea, diff --git a/domain/consensus/processes/headersselectedtipmanager/headersselectedtipmanager.go b/domain/consensus/processes/headersselectedtipmanager/headersselectedtipmanager.go index 6b5ed3fa4..4eadd5e60 100644 --- a/domain/consensus/processes/headersselectedtipmanager/headersselectedtipmanager.go +++ b/domain/consensus/processes/headersselectedtipmanager/headersselectedtipmanager.go @@ -1,8 +1,8 @@ package headersselectedtipmanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type headerTipsManager struct { diff --git a/domain/consensus/processes/headersselectedtipmanager/headersselectedtipmanager_test.go b/domain/consensus/processes/headersselectedtipmanager/headersselectedtipmanager_test.go index 448880644..c1ffcf13b 100644 --- a/domain/consensus/processes/headersselectedtipmanager/headersselectedtipmanager_test.go +++ b/domain/consensus/processes/headersselectedtipmanager/headersselectedtipmanager_test.go @@ -3,12 +3,12 @@ package headersselectedtipmanager_test import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/mergedepthmanager/log.go b/domain/consensus/processes/mergedepthmanager/log.go index 23c0d4778..c17eaaf5f 100644 --- a/domain/consensus/processes/mergedepthmanager/log.go +++ b/domain/consensus/processes/mergedepthmanager/log.go @@ -1,7 +1,7 @@ package mergedepthmanager import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("MDMN") diff --git a/domain/consensus/processes/mergedepthmanager/merge_depth_manager.go b/domain/consensus/processes/mergedepthmanager/merge_depth_manager.go index cbd6b670f..f261d41b1 100644 --- a/domain/consensus/processes/mergedepthmanager/merge_depth_manager.go +++ b/domain/consensus/processes/mergedepthmanager/merge_depth_manager.go @@ -1,10 +1,10 @@ package mergedepthmanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/parentsmanager/parentsmanager.go b/domain/consensus/processes/parentsmanager/parentsmanager.go index 98b65c6b3..5f4fda6e7 100644 --- a/domain/consensus/processes/parentsmanager/parentsmanager.go +++ b/domain/consensus/processes/parentsmanager/parentsmanager.go @@ -1,8 +1,8 @@ package parentssanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type parentsManager struct { diff --git a/domain/consensus/processes/pastmediantimemanager/pastmediantimemanager.go b/domain/consensus/processes/pastmediantimemanager/pastmediantimemanager.go index 6a1167ca5..b9cfc8f51 100644 --- a/domain/consensus/processes/pastmediantimemanager/pastmediantimemanager.go +++ b/domain/consensus/processes/pastmediantimemanager/pastmediantimemanager.go @@ -3,10 +3,10 @@ package pastmediantimemanager import ( "sort" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/sorters" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/sorters" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/pastmediantimemanager/pastmediantimemanager_test.go b/domain/consensus/processes/pastmediantimemanager/pastmediantimemanager_test.go index 0e75c2651..8dd542be0 100644 --- a/domain/consensus/processes/pastmediantimemanager/pastmediantimemanager_test.go +++ b/domain/consensus/processes/pastmediantimemanager/pastmediantimemanager_test.go @@ -3,12 +3,12 @@ package pastmediantimemanager_test import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" ) func TestPastMedianTime(t *testing.T) { diff --git a/domain/consensus/processes/pruningmanager/log.go b/domain/consensus/processes/pruningmanager/log.go index 528efb2e8..87999214b 100644 --- a/domain/consensus/processes/pruningmanager/log.go +++ b/domain/consensus/processes/pruningmanager/log.go @@ -1,5 +1,5 @@ package pruningmanager -import "github.com/c4ei/YunSeokYeol/infrastructure/logger" +import "github.com/c4ei/yunseokyeol/infrastructure/logger" var log = logger.RegisterSubSystem("PRNM") diff --git a/domain/consensus/processes/pruningmanager/pruning_test.go b/domain/consensus/processes/pruningmanager/pruning_test.go index 5d854ee6c..9f5f711d8 100644 --- a/domain/consensus/processes/pruningmanager/pruning_test.go +++ b/domain/consensus/processes/pruningmanager/pruning_test.go @@ -7,14 +7,14 @@ import ( "testing" "time" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/dagconfig" ) type jsonBlock struct { diff --git a/domain/consensus/processes/pruningmanager/pruningmanager.go b/domain/consensus/processes/pruningmanager/pruningmanager.go index 90398103c..a9ac7652c 100644 --- a/domain/consensus/processes/pruningmanager/pruningmanager.go +++ b/domain/consensus/processes/pruningmanager/pruningmanager.go @@ -3,15 +3,15 @@ package pruningmanager import ( "sort" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/multiset" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/virtual" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/multiset" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/virtual" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/pruningproofmanager/log.go b/domain/consensus/processes/pruningproofmanager/log.go index 62ee8a82f..5387c4791 100644 --- a/domain/consensus/processes/pruningproofmanager/log.go +++ b/domain/consensus/processes/pruningproofmanager/log.go @@ -1,5 +1,5 @@ package pruningproofmanager -import "github.com/c4ei/YunSeokYeol/infrastructure/logger" +import "github.com/c4ei/yunseokyeol/infrastructure/logger" var log = logger.RegisterSubSystem("PPMN") diff --git a/domain/consensus/processes/pruningproofmanager/pruningproofmanager.go b/domain/consensus/processes/pruningproofmanager/pruningproofmanager.go index dfdb5c621..6c20f881a 100644 --- a/domain/consensus/processes/pruningproofmanager/pruningproofmanager.go +++ b/domain/consensus/processes/pruningproofmanager/pruningproofmanager.go @@ -3,23 +3,23 @@ package pruningproofmanager import ( "math/big" - consensusDB "github.com/c4ei/YunSeokYeol/domain/consensus/database" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/blockheaderstore" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/blockrelationstore" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/ghostdagdatastore" - "github.com/c4ei/YunSeokYeol/domain/consensus/datastructures/reachabilitydatastore" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/dagtopologymanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/dagtraversalmanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/ghostdagmanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/reachabilitymanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashset" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/staging" + consensusDB "github.com/c4ei/yunseokyeol/domain/consensus/database" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/blockheaderstore" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/blockrelationstore" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/ghostdagdatastore" + "github.com/c4ei/yunseokyeol/domain/consensus/datastructures/reachabilitydatastore" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/dagtopologymanager" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/dagtraversalmanager" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/ghostdagmanager" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/reachabilitymanager" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashset" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/staging" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/reachabilitymanager/fetch.go b/domain/consensus/processes/reachabilitymanager/fetch.go index 930166a40..a6c413907 100644 --- a/domain/consensus/processes/reachabilitymanager/fetch.go +++ b/domain/consensus/processes/reachabilitymanager/fetch.go @@ -1,10 +1,10 @@ package reachabilitymanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/database" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/reachabilitydata" + "github.com/c4ei/yunseokyeol/domain/consensus/database" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/reachabilitydata" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/reachabilitymanager/future_covering_set.go b/domain/consensus/processes/reachabilitymanager/future_covering_set.go index b2a36e492..419de6020 100644 --- a/domain/consensus/processes/reachabilitymanager/future_covering_set.go +++ b/domain/consensus/processes/reachabilitymanager/future_covering_set.go @@ -1,8 +1,8 @@ package reachabilitymanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // insertToFutureCoveringSet inserts the given block into this node's FutureCoveringSet diff --git a/domain/consensus/processes/reachabilitymanager/interval.go b/domain/consensus/processes/reachabilitymanager/interval.go index 0cd1724f6..e3b3b486e 100644 --- a/domain/consensus/processes/reachabilitymanager/interval.go +++ b/domain/consensus/processes/reachabilitymanager/interval.go @@ -3,7 +3,7 @@ package reachabilitymanager import ( "math" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/reachabilitymanager/log.go b/domain/consensus/processes/reachabilitymanager/log.go index e8bdacea1..ec0d36987 100644 --- a/domain/consensus/processes/reachabilitymanager/log.go +++ b/domain/consensus/processes/reachabilitymanager/log.go @@ -1,7 +1,7 @@ package reachabilitymanager import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("REAC") diff --git a/domain/consensus/processes/reachabilitymanager/main_test.go b/domain/consensus/processes/reachabilitymanager/main_test.go index 39123a080..aad108bb6 100644 --- a/domain/consensus/processes/reachabilitymanager/main_test.go +++ b/domain/consensus/processes/reachabilitymanager/main_test.go @@ -4,7 +4,7 @@ import ( "os" "testing" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) const logLevel = logger.LevelWarn diff --git a/domain/consensus/processes/reachabilitymanager/ordered_tree_node_set.go b/domain/consensus/processes/reachabilitymanager/ordered_tree_node_set.go index 71ebc0ea8..c684259ed 100644 --- a/domain/consensus/processes/reachabilitymanager/ordered_tree_node_set.go +++ b/domain/consensus/processes/reachabilitymanager/ordered_tree_node_set.go @@ -1,8 +1,8 @@ package reachabilitymanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // orderedTreeNodeSet is an ordered set of model.DomainHash ordered by the respectful intervals. diff --git a/domain/consensus/processes/reachabilitymanager/reachability.go b/domain/consensus/processes/reachabilitymanager/reachability.go index dc3d822df..69f171291 100644 --- a/domain/consensus/processes/reachabilitymanager/reachability.go +++ b/domain/consensus/processes/reachabilitymanager/reachability.go @@ -1,8 +1,8 @@ package reachabilitymanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // IsDAGAncestorOf returns true if blockHashA is an ancestor of diff --git a/domain/consensus/processes/reachabilitymanager/reachabilityManager_test.go b/domain/consensus/processes/reachabilitymanager/reachabilityManager_test.go index 1afc543a3..a83499187 100644 --- a/domain/consensus/processes/reachabilitymanager/reachabilityManager_test.go +++ b/domain/consensus/processes/reachabilitymanager/reachabilityManager_test.go @@ -3,11 +3,11 @@ package reachabilitymanager_test import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" ) func TestReachabilityIsDAGAncestorOf(t *testing.T) { diff --git a/domain/consensus/processes/reachabilitymanager/reachability_external_test.go b/domain/consensus/processes/reachabilitymanager/reachability_external_test.go index dab4ddec9..048732489 100644 --- a/domain/consensus/processes/reachabilitymanager/reachability_external_test.go +++ b/domain/consensus/processes/reachabilitymanager/reachability_external_test.go @@ -4,11 +4,11 @@ import ( "math" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" ) func TestAddChildThatPointsDirectlyToTheSelectedParentChainBelowReindexRoot(t *testing.T) { diff --git a/domain/consensus/processes/reachabilitymanager/reachability_stretch_test.go b/domain/consensus/processes/reachabilitymanager/reachability_stretch_test.go index 9968628d1..92d0776f4 100644 --- a/domain/consensus/processes/reachabilitymanager/reachability_stretch_test.go +++ b/domain/consensus/processes/reachabilitymanager/reachability_stretch_test.go @@ -8,12 +8,12 @@ import ( "os" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/domain/dagconfig" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/reachabilitymanager/reachability_test.go b/domain/consensus/processes/reachabilitymanager/reachability_test.go index e4cb4eeb6..512ab5616 100644 --- a/domain/consensus/processes/reachabilitymanager/reachability_test.go +++ b/domain/consensus/processes/reachabilitymanager/reachability_test.go @@ -6,8 +6,8 @@ import ( "strings" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type reachabilityDataStoreMock struct { diff --git a/domain/consensus/processes/reachabilitymanager/reachabilitymanager.go b/domain/consensus/processes/reachabilitymanager/reachabilitymanager.go index 38a1b5307..4090116cd 100644 --- a/domain/consensus/processes/reachabilitymanager/reachabilitymanager.go +++ b/domain/consensus/processes/reachabilitymanager/reachabilitymanager.go @@ -1,8 +1,8 @@ package reachabilitymanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // reachabilityManager maintains a structure that allows to answer diff --git a/domain/consensus/processes/reachabilitymanager/reindex_context.go b/domain/consensus/processes/reachabilitymanager/reindex_context.go index d87a6c18e..1def19cfa 100644 --- a/domain/consensus/processes/reachabilitymanager/reindex_context.go +++ b/domain/consensus/processes/reachabilitymanager/reindex_context.go @@ -1,8 +1,8 @@ package reachabilitymanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/reachabilitymanager/stage.go b/domain/consensus/processes/reachabilitymanager/stage.go index 5534cec5b..f446c7b86 100644 --- a/domain/consensus/processes/reachabilitymanager/stage.go +++ b/domain/consensus/processes/reachabilitymanager/stage.go @@ -1,8 +1,8 @@ package reachabilitymanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) func (rt *reachabilityManager) stageData(stagingArea *model.StagingArea, blockHash *externalapi.DomainHash, data model.ReachabilityData) { diff --git a/domain/consensus/processes/reachabilitymanager/test_reachabilitymanager.go b/domain/consensus/processes/reachabilitymanager/test_reachabilitymanager.go index 3be07eecb..4073c7e37 100644 --- a/domain/consensus/processes/reachabilitymanager/test_reachabilitymanager.go +++ b/domain/consensus/processes/reachabilitymanager/test_reachabilitymanager.go @@ -1,9 +1,9 @@ package reachabilitymanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" ) type testReachabilityManager struct { diff --git a/domain/consensus/processes/reachabilitymanager/tree.go b/domain/consensus/processes/reachabilitymanager/tree.go index 50ceed7f6..ed2a5d147 100644 --- a/domain/consensus/processes/reachabilitymanager/tree.go +++ b/domain/consensus/processes/reachabilitymanager/tree.go @@ -5,10 +5,10 @@ import ( "strings" "time" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/reachabilitydata" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/reachabilitydata" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/syncmanager/antipast.go b/domain/consensus/processes/syncmanager/antipast.go index 03629ddee..50870eb58 100644 --- a/domain/consensus/processes/syncmanager/antipast.go +++ b/domain/consensus/processes/syncmanager/antipast.go @@ -1,8 +1,8 @@ package syncmanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) @@ -151,7 +151,7 @@ func (sm *syncManager) missingBlockBodyHashes(stagingArea *model.StagingArea, hi // In these cases - return an empty list of blocks to sync return []*externalapi.DomainHash{}, nil } - // TODO: Once block children are fixed (https://github.com/c4ei/YunSeokYeol/issues/1499), + // TODO: Once block children are fixed (https://github.com/c4ei/yunseokyeol/issues/1499), // this error should be returned rather the logged log.Errorf("No header-only blocks between %s and %s", lowHash, highHash) diff --git a/domain/consensus/processes/syncmanager/blocklocator.go b/domain/consensus/processes/syncmanager/blocklocator.go index 995d1da16..370e44374 100644 --- a/domain/consensus/processes/syncmanager/blocklocator.go +++ b/domain/consensus/processes/syncmanager/blocklocator.go @@ -1,9 +1,9 @@ package syncmanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/database" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/database" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/syncmanager/blocklocator_test.go b/domain/consensus/processes/syncmanager/blocklocator_test.go index 2696db3b3..0f17946f5 100644 --- a/domain/consensus/processes/syncmanager/blocklocator_test.go +++ b/domain/consensus/processes/syncmanager/blocklocator_test.go @@ -4,11 +4,11 @@ import ( "strings" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/syncmanager/log.go b/domain/consensus/processes/syncmanager/log.go index 2cfaad06e..d1999b726 100644 --- a/domain/consensus/processes/syncmanager/log.go +++ b/domain/consensus/processes/syncmanager/log.go @@ -1,7 +1,7 @@ package syncmanager import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("SYNC") diff --git a/domain/consensus/processes/syncmanager/syncinfo.go b/domain/consensus/processes/syncmanager/syncinfo.go index 46103b416..620e1b19e 100644 --- a/domain/consensus/processes/syncmanager/syncinfo.go +++ b/domain/consensus/processes/syncmanager/syncinfo.go @@ -1,8 +1,8 @@ package syncmanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) func (sm *syncManager) syncInfo(stagingArea *model.StagingArea) (*externalapi.SyncInfo, error) { diff --git a/domain/consensus/processes/syncmanager/syncmanager.go b/domain/consensus/processes/syncmanager/syncmanager.go index d0a9cae9c..9d1fe0cee 100644 --- a/domain/consensus/processes/syncmanager/syncmanager.go +++ b/domain/consensus/processes/syncmanager/syncmanager.go @@ -1,9 +1,9 @@ package syncmanager import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/infrastructure/logger" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/syncmanager/syncmanager_test.go b/domain/consensus/processes/syncmanager/syncmanager_test.go index 6ade6b308..94ef20565 100644 --- a/domain/consensus/processes/syncmanager/syncmanager_test.go +++ b/domain/consensus/processes/syncmanager/syncmanager_test.go @@ -6,11 +6,11 @@ import ( "sort" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" ) func TestSyncManager_GetHashesBetween(t *testing.T) { diff --git a/domain/consensus/processes/transactionvalidator/mass.go b/domain/consensus/processes/transactionvalidator/mass.go index b788c0ec5..4fc898c82 100644 --- a/domain/consensus/processes/transactionvalidator/mass.go +++ b/domain/consensus/processes/transactionvalidator/mass.go @@ -1,7 +1,7 @@ package transactionvalidator import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // PopulateMass calculates and populates the mass of the given transaction diff --git a/domain/consensus/processes/transactionvalidator/test_transaction_validator.go b/domain/consensus/processes/transactionvalidator/test_transaction_validator.go index 7fb42b55a..8f578c582 100644 --- a/domain/consensus/processes/transactionvalidator/test_transaction_validator.go +++ b/domain/consensus/processes/transactionvalidator/test_transaction_validator.go @@ -1,9 +1,9 @@ package transactionvalidator import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" ) type testTransactionValidator struct { diff --git a/domain/consensus/processes/transactionvalidator/transaction_in_context.go b/domain/consensus/processes/transactionvalidator/transaction_in_context.go index 9e169a57d..d280ec68d 100644 --- a/domain/consensus/processes/transactionvalidator/transaction_in_context.go +++ b/domain/consensus/processes/transactionvalidator/transaction_in_context.go @@ -3,13 +3,13 @@ package transactionvalidator import ( "math" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/transactionvalidator/transaction_in_isolation.go b/domain/consensus/processes/transactionvalidator/transaction_in_isolation.go index b99d6e7e1..dd4fc75c3 100644 --- a/domain/consensus/processes/transactionvalidator/transaction_in_isolation.go +++ b/domain/consensus/processes/transactionvalidator/transaction_in_isolation.go @@ -1,11 +1,11 @@ package transactionvalidator import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/transactionvalidator/transaction_in_isolation_test.go b/domain/consensus/processes/transactionvalidator/transaction_in_isolation_test.go index 38ec7556e..30e4d7264 100644 --- a/domain/consensus/processes/transactionvalidator/transaction_in_isolation_test.go +++ b/domain/consensus/processes/transactionvalidator/transaction_in_isolation_test.go @@ -3,13 +3,13 @@ package transactionvalidator_test import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" "github.com/pkg/errors" ) diff --git a/domain/consensus/processes/transactionvalidator/transactionvalidator.go b/domain/consensus/processes/transactionvalidator/transactionvalidator.go index a35e74780..0e0583e43 100644 --- a/domain/consensus/processes/transactionvalidator/transactionvalidator.go +++ b/domain/consensus/processes/transactionvalidator/transactionvalidator.go @@ -1,10 +1,10 @@ package transactionvalidator import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/util/txmass" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/util/txmass" ) const sigCacheSize = 10_000 diff --git a/domain/consensus/processes/transactionvalidator/transactionvalidator_test.go b/domain/consensus/processes/transactionvalidator/transactionvalidator_test.go index 23430b15d..7cd087881 100644 --- a/domain/consensus/processes/transactionvalidator/transactionvalidator_test.go +++ b/domain/consensus/processes/transactionvalidator/transactionvalidator_test.go @@ -1,21 +1,21 @@ package transactionvalidator_test import ( - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/util" "github.com/kaspanet/go-secp256k1" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" "github.com/pkg/errors" ) diff --git a/domain/consensus/pruning_test.go b/domain/consensus/pruning_test.go index e4ee7db6f..08456280b 100644 --- a/domain/consensus/pruning_test.go +++ b/domain/consensus/pruning_test.go @@ -3,9 +3,9 @@ package consensus_test import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/dagconfig" ) func TestPruningDepth(t *testing.T) { diff --git a/domain/consensus/ruleerrors/rule_error.go b/domain/consensus/ruleerrors/rule_error.go index fec7c77f9..da96df9ef 100644 --- a/domain/consensus/ruleerrors/rule_error.go +++ b/domain/consensus/ruleerrors/rule_error.go @@ -3,8 +3,8 @@ package ruleerrors import ( "fmt" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" "github.com/pkg/errors" ) diff --git a/domain/consensus/ruleerrors/rule_error_test.go b/domain/consensus/ruleerrors/rule_error_test.go index a2306d278..b03235cbe 100644 --- a/domain/consensus/ruleerrors/rule_error_test.go +++ b/domain/consensus/ruleerrors/rule_error_test.go @@ -5,9 +5,9 @@ import ( "fmt" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) func TestNewErrMissingTxOut(t *testing.T) { diff --git a/domain/consensus/test_consensus.go b/domain/consensus/test_consensus.go index 0bcba4971..6cb2b95da 100644 --- a/domain/consensus/test_consensus.go +++ b/domain/consensus/test_consensus.go @@ -5,15 +5,15 @@ import ( "fmt" "io" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashset" - "github.com/c4ei/YunSeokYeol/util/staging" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashset" + "github.com/c4ei/yunseokyeol/util/staging" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" "github.com/pkg/errors" ) diff --git a/domain/consensus/test_consensus_getters.go b/domain/consensus/test_consensus_getters.go index c522979d2..b2ae02e7a 100644 --- a/domain/consensus/test_consensus_getters.go +++ b/domain/consensus/test_consensus_getters.go @@ -1,10 +1,10 @@ package consensus import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" ) func (tc *testConsensus) DatabaseContext() model.DBManager { diff --git a/domain/consensus/test_consensus_render_to_dot.go b/domain/consensus/test_consensus_render_to_dot.go index ced6aeece..758ca5a59 100644 --- a/domain/consensus/test_consensus_render_to_dot.go +++ b/domain/consensus/test_consensus_render_to_dot.go @@ -8,7 +8,7 @@ import ( "os/exec" "strings" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" ) // RenderDAGToDot is a helper function for debugging tests. diff --git a/domain/consensus/timelock_CLTV_test.go b/domain/consensus/timelock_CLTV_test.go index e80e7269d..b77a23837 100644 --- a/domain/consensus/timelock_CLTV_test.go +++ b/domain/consensus/timelock_CLTV_test.go @@ -4,15 +4,15 @@ import ( "errors" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" ) // TestCheckLockTimeVerifyConditionedByDAAScore verifies that an output locked by the CLTV script is spendable only after diff --git a/domain/consensus/utils/blockheader/blockheader.go b/domain/consensus/utils/blockheader/blockheader.go index e3e0f4424..95d9fae08 100644 --- a/domain/consensus/utils/blockheader/blockheader.go +++ b/domain/consensus/utils/blockheader/blockheader.go @@ -3,8 +3,8 @@ package blockheader import ( "math/big" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/pow" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/pow" ) type blockHeader struct { diff --git a/domain/consensus/utils/blockheader/blockheader_test.go b/domain/consensus/utils/blockheader/blockheader_test.go index 721b1aa11..4c0b242b8 100644 --- a/domain/consensus/utils/blockheader/blockheader_test.go +++ b/domain/consensus/utils/blockheader/blockheader_test.go @@ -4,7 +4,7 @@ import ( "math/big" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) func TestDomainBlockHeader_Equal(t *testing.T) { diff --git a/domain/consensus/utils/consensushashing/block.go b/domain/consensus/utils/consensushashing/block.go index 42c24b970..cce30984e 100644 --- a/domain/consensus/utils/consensushashing/block.go +++ b/domain/consensus/utils/consensushashing/block.go @@ -3,10 +3,10 @@ package consensushashing import ( "io" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashes" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashes" "github.com/pkg/errors" ) diff --git a/domain/consensus/utils/consensushashing/calculate_signature_hash.go b/domain/consensus/utils/consensushashing/calculate_signature_hash.go index a7b0dc7e9..d3314a8c8 100644 --- a/domain/consensus/utils/consensushashing/calculate_signature_hash.go +++ b/domain/consensus/utils/consensushashing/calculate_signature_hash.go @@ -1,10 +1,10 @@ package consensushashing import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashes" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashes" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" "github.com/pkg/errors" ) diff --git a/domain/consensus/utils/consensushashing/calculate_signature_hash_test.go b/domain/consensus/utils/consensushashing/calculate_signature_hash_test.go index a2c903908..9f35f7528 100644 --- a/domain/consensus/utils/consensushashing/calculate_signature_hash_test.go +++ b/domain/consensus/utils/consensushashing/calculate_signature_hash_test.go @@ -5,17 +5,17 @@ import ( "fmt" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" "github.com/kaspanet/go-secp256k1" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/util" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // shortened versions of SigHash types to fit in single line of test case diff --git a/domain/consensus/utils/consensushashing/transaction.go b/domain/consensus/utils/consensushashing/transaction.go index e3234c652..1d3239094 100644 --- a/domain/consensus/utils/consensushashing/transaction.go +++ b/domain/consensus/utils/consensushashing/transaction.go @@ -3,12 +3,12 @@ package consensushashing import ( "io" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashes" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" - "github.com/c4ei/YunSeokYeol/util/binaryserializer" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashes" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/util/binaryserializer" "github.com/pkg/errors" ) diff --git a/domain/consensus/utils/hashes/strings.go b/domain/consensus/utils/hashes/strings.go index f6415e5d2..ce0fbcf45 100644 --- a/domain/consensus/utils/hashes/strings.go +++ b/domain/consensus/utils/hashes/strings.go @@ -1,7 +1,7 @@ package hashes import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // ToStrings converts a slice of hashes into a slice of the corresponding strings diff --git a/domain/consensus/utils/hashes/writers.go b/domain/consensus/utils/hashes/writers.go index 79a52d19c..3e11e735d 100644 --- a/domain/consensus/utils/hashes/writers.go +++ b/domain/consensus/utils/hashes/writers.go @@ -3,7 +3,7 @@ package hashes import ( "hash" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" "golang.org/x/crypto/sha3" ) diff --git a/domain/consensus/utils/hashset/hash_set.go b/domain/consensus/utils/hashset/hash_set.go index 14854df2f..a656e56f7 100644 --- a/domain/consensus/utils/hashset/hash_set.go +++ b/domain/consensus/utils/hashset/hash_set.go @@ -3,7 +3,7 @@ package hashset import ( "strings" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // HashSet is an unsorted unique collection of DomainHashes diff --git a/domain/consensus/utils/lrucache/lrucache.go b/domain/consensus/utils/lrucache/lrucache.go index ddf8434a1..8ec384e56 100644 --- a/domain/consensus/utils/lrucache/lrucache.go +++ b/domain/consensus/utils/lrucache/lrucache.go @@ -1,7 +1,7 @@ package lrucache import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // LRUCache is a least-recently-used cache for any type diff --git a/domain/consensus/utils/lrucacheghostdagdata/lrucacheghostdagdata.go b/domain/consensus/utils/lrucacheghostdagdata/lrucacheghostdagdata.go index c8ebf3bf7..739c232a4 100644 --- a/domain/consensus/utils/lrucacheghostdagdata/lrucacheghostdagdata.go +++ b/domain/consensus/utils/lrucacheghostdagdata/lrucacheghostdagdata.go @@ -1,6 +1,6 @@ package lrucacheghostdagdata -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" type lruKey struct { blockHash externalapi.DomainHash diff --git a/domain/consensus/utils/lrucachehashandwindowsizetoblockghostdagdatahashpairs/lrucachehashandwindowsizetoblockghostdagdatahashpairs.go b/domain/consensus/utils/lrucachehashandwindowsizetoblockghostdagdatahashpairs/lrucachehashandwindowsizetoblockghostdagdatahashpairs.go index 13594ab5c..866488011 100644 --- a/domain/consensus/utils/lrucachehashandwindowsizetoblockghostdagdatahashpairs/lrucachehashandwindowsizetoblockghostdagdatahashpairs.go +++ b/domain/consensus/utils/lrucachehashandwindowsizetoblockghostdagdatahashpairs/lrucachehashandwindowsizetoblockghostdagdatahashpairs.go @@ -1,6 +1,6 @@ package lrucachehashandwindowsizetoblockghostdagdatahashpairs -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" type lruKey struct { blockHash externalapi.DomainHash diff --git a/domain/consensus/utils/lrucachehashpairtoblockghostdagdatahashpair/lrucachehashpairtoblockghostdagdatahashpair.go b/domain/consensus/utils/lrucachehashpairtoblockghostdagdatahashpair/lrucachehashpairtoblockghostdagdatahashpair.go index 37a7d5c67..8d22c9815 100644 --- a/domain/consensus/utils/lrucachehashpairtoblockghostdagdatahashpair/lrucachehashpairtoblockghostdagdatahashpair.go +++ b/domain/consensus/utils/lrucachehashpairtoblockghostdagdatahashpair/lrucachehashpairtoblockghostdagdatahashpair.go @@ -1,6 +1,6 @@ package lrucachehashpairtoblockghostdagdatahashpair -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" type lruKey struct { blockHash externalapi.DomainHash diff --git a/domain/consensus/utils/lrucacheuint64tohash/lrucacheuint64tohash.go b/domain/consensus/utils/lrucacheuint64tohash/lrucacheuint64tohash.go index 2bea4e210..62a0f7ba5 100644 --- a/domain/consensus/utils/lrucacheuint64tohash/lrucacheuint64tohash.go +++ b/domain/consensus/utils/lrucacheuint64tohash/lrucacheuint64tohash.go @@ -1,6 +1,6 @@ package lrucacheuint64tohash -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // LRUCache is a least-recently-used cache from // uint64 to DomainHash diff --git a/domain/consensus/utils/merkle/merkle.go b/domain/consensus/utils/merkle/merkle.go index 1605ecefd..948672dbf 100644 --- a/domain/consensus/utils/merkle/merkle.go +++ b/domain/consensus/utils/merkle/merkle.go @@ -3,9 +3,9 @@ package merkle import ( "math" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashes" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashes" ) // nextPowerOfTwo returns the next highest power of two from a given number if diff --git a/domain/consensus/utils/mining/solve.go b/domain/consensus/utils/mining/solve.go index 68ec92ae5..3a3126e9d 100644 --- a/domain/consensus/utils/mining/solve.go +++ b/domain/consensus/utils/mining/solve.go @@ -4,8 +4,8 @@ import ( "math" "math/rand" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/pow" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/pow" "github.com/pkg/errors" ) diff --git a/domain/consensus/utils/multiset/multiset.go b/domain/consensus/utils/multiset/multiset.go index 314572c48..f9352807b 100644 --- a/domain/consensus/utils/multiset/multiset.go +++ b/domain/consensus/utils/multiset/multiset.go @@ -1,8 +1,8 @@ package multiset import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/kaspanet/go-muhash" "github.com/pkg/errors" ) diff --git a/domain/consensus/utils/pow/heavyhash.go b/domain/consensus/utils/pow/heavyhash.go index 3885159cc..f13852c0b 100644 --- a/domain/consensus/utils/pow/heavyhash.go +++ b/domain/consensus/utils/pow/heavyhash.go @@ -3,8 +3,8 @@ package pow import ( "math" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashes" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashes" ) const eps float64 = 1e-9 diff --git a/domain/consensus/utils/pow/heavyhash_test.go b/domain/consensus/utils/pow/heavyhash_test.go index 4930c4a4d..c9e1b1022 100644 --- a/domain/consensus/utils/pow/heavyhash_test.go +++ b/domain/consensus/utils/pow/heavyhash_test.go @@ -6,8 +6,8 @@ import ( "math/rand" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashes" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashes" ) func BenchmarkMatrix_HeavyHash(b *testing.B) { diff --git a/domain/consensus/utils/pow/pow.go b/domain/consensus/utils/pow/pow.go index babac0200..b5a4b6e21 100644 --- a/domain/consensus/utils/pow/pow.go +++ b/domain/consensus/utils/pow/pow.go @@ -1,11 +1,11 @@ package pow import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/hashes" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/serialization" - "github.com/c4ei/YunSeokYeol/util/difficulty" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/hashes" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/serialization" + "github.com/c4ei/yunseokyeol/util/difficulty" "math/big" diff --git a/domain/consensus/utils/pow/xoshiro.go b/domain/consensus/utils/pow/xoshiro.go index 89a6b4cc6..5b7d2f041 100644 --- a/domain/consensus/utils/pow/xoshiro.go +++ b/domain/consensus/utils/pow/xoshiro.go @@ -4,7 +4,7 @@ import ( "encoding/binary" "math/bits" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type xoShiRo256PlusPlus struct { diff --git a/domain/consensus/utils/reachabilitydata/reachability_data.go b/domain/consensus/utils/reachabilitydata/reachability_data.go index a7af92896..fc2e3ab1e 100644 --- a/domain/consensus/utils/reachabilitydata/reachability_data.go +++ b/domain/consensus/utils/reachabilitydata/reachability_data.go @@ -1,8 +1,8 @@ package reachabilitydata import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type reachabilityData struct { diff --git a/domain/consensus/utils/reachabilitydata/reachabilitydata_equal_clone_test.go b/domain/consensus/utils/reachabilitydata/reachabilitydata_equal_clone_test.go index 895e3b29a..4bd4d8bba 100644 --- a/domain/consensus/utils/reachabilitydata/reachabilitydata_equal_clone_test.go +++ b/domain/consensus/utils/reachabilitydata/reachabilitydata_equal_clone_test.go @@ -4,8 +4,8 @@ import ( "reflect" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) func TestReachabilityData_Equal(t *testing.T) { diff --git a/domain/consensus/utils/serialization/common.go b/domain/consensus/utils/serialization/common.go index d6f5735bd..ff8b3fe9b 100644 --- a/domain/consensus/utils/serialization/common.go +++ b/domain/consensus/utils/serialization/common.go @@ -3,8 +3,8 @@ package serialization import ( "io" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/util/binaryserializer" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/util/binaryserializer" "github.com/pkg/errors" ) diff --git a/domain/consensus/utils/subnetworks/compare.go b/domain/consensus/utils/subnetworks/compare.go index 93163803a..b42d6bbea 100644 --- a/domain/consensus/utils/subnetworks/compare.go +++ b/domain/consensus/utils/subnetworks/compare.go @@ -3,7 +3,7 @@ package subnetworks import ( "bytes" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // Less returns true iff id a is less than id b diff --git a/domain/consensus/utils/subnetworks/from_bytes.go b/domain/consensus/utils/subnetworks/from_bytes.go index 67f0d1a26..1824a2eae 100644 --- a/domain/consensus/utils/subnetworks/from_bytes.go +++ b/domain/consensus/utils/subnetworks/from_bytes.go @@ -1,7 +1,7 @@ package subnetworks import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/domain/consensus/utils/subnetworks/from_string.go b/domain/consensus/utils/subnetworks/from_string.go index f04b88902..4cb569ee9 100644 --- a/domain/consensus/utils/subnetworks/from_string.go +++ b/domain/consensus/utils/subnetworks/from_string.go @@ -3,7 +3,7 @@ package subnetworks import ( "encoding/hex" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // FromString creates a DomainSubnetworkID from the given byte slice diff --git a/domain/consensus/utils/subnetworks/subnetworks.go b/domain/consensus/utils/subnetworks/subnetworks.go index d2566a6b0..ef4ce57d7 100644 --- a/domain/consensus/utils/subnetworks/subnetworks.go +++ b/domain/consensus/utils/subnetworks/subnetworks.go @@ -1,6 +1,6 @@ package subnetworks -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" var ( // SubnetworkIDNative is the default subnetwork ID which is used for transactions without related payload data diff --git a/domain/consensus/utils/testutils/create_transaction.go b/domain/consensus/utils/testutils/create_transaction.go index 12b145329..67de22066 100644 --- a/domain/consensus/utils/testutils/create_transaction.go +++ b/domain/consensus/utils/testutils/create_transaction.go @@ -1,10 +1,10 @@ package testutils import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" ) // CreateTransaction create a transaction that spends the first output of provided transaction. diff --git a/domain/consensus/utils/testutils/for_all_nets.go b/domain/consensus/utils/testutils/for_all_nets.go index b89624d6c..e5fbe7a6e 100644 --- a/domain/consensus/utils/testutils/for_all_nets.go +++ b/domain/consensus/utils/testutils/for_all_nets.go @@ -3,8 +3,8 @@ package testutils import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/dagconfig" ) // ForAllNets runs the passed testFunc with all available networks diff --git a/domain/consensus/utils/testutils/op_true_script.go b/domain/consensus/utils/testutils/op_true_script.go index 2c901868c..6b10149df 100644 --- a/domain/consensus/utils/testutils/op_true_script.go +++ b/domain/consensus/utils/testutils/op_true_script.go @@ -1,9 +1,9 @@ package testutils import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" "github.com/pkg/errors" ) diff --git a/domain/consensus/utils/testutils/test_ghostdag.go b/domain/consensus/utils/testutils/test_ghostdag.go index ad3905ef9..8a9b6f1e2 100644 --- a/domain/consensus/utils/testutils/test_ghostdag.go +++ b/domain/consensus/utils/testutils/test_ghostdag.go @@ -4,9 +4,9 @@ import ( "sort" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" ) type testGhostDAGSorter struct { diff --git a/domain/consensus/utils/transactionhelper/coinbase.go b/domain/consensus/utils/transactionhelper/coinbase.go index e97696211..bb2cbf74d 100644 --- a/domain/consensus/utils/transactionhelper/coinbase.go +++ b/domain/consensus/utils/transactionhelper/coinbase.go @@ -1,8 +1,8 @@ package transactionhelper import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" ) // CoinbaseTransactionIndex is the index of the coinbase transaction in every block diff --git a/domain/consensus/utils/transactionhelper/new.go b/domain/consensus/utils/transactionhelper/new.go index d33d2becb..da063093e 100644 --- a/domain/consensus/utils/transactionhelper/new.go +++ b/domain/consensus/utils/transactionhelper/new.go @@ -1,8 +1,8 @@ package transactionhelper import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" ) // NewSubnetworkTransaction returns a new trsnactions in the specified subnetwork with specified gas and payload diff --git a/domain/consensus/utils/transactionid/from_bytes.go b/domain/consensus/utils/transactionid/from_bytes.go index 4a70911e2..404235dcc 100644 --- a/domain/consensus/utils/transactionid/from_bytes.go +++ b/domain/consensus/utils/transactionid/from_bytes.go @@ -1,7 +1,7 @@ package transactionid import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // FromBytes creates a DomainTransactionID from the given byte slice diff --git a/domain/consensus/utils/transactionid/from_string.go b/domain/consensus/utils/transactionid/from_string.go index 31866ca43..ba2a0c9f6 100644 --- a/domain/consensus/utils/transactionid/from_string.go +++ b/domain/consensus/utils/transactionid/from_string.go @@ -1,7 +1,7 @@ package transactionid import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // FromString creates a new DomainTransactionID from the given string diff --git a/domain/consensus/utils/txscript/README.md b/domain/consensus/utils/txscript/README.md index 82faa9b95..5b007fd1e 100644 --- a/domain/consensus/utils/txscript/README.md +++ b/domain/consensus/utils/txscript/README.md @@ -2,7 +2,7 @@ txscript ======== [![ISC License](http://img.shields.io/badge/license-ISC-blue.svg)](https://choosealicense.com/licenses/isc/) -[![GoDoc](https://godoc.org/github.com/c4ei/YunSeokYeol/txscript?status.png)](http://godoc.org/github.com/c4ei/YunSeokYeol/txscript) +[![GoDoc](https://godoc.org/github.com/c4ei/yunseokyeol/txscript?status.png)](http://godoc.org/github.com/c4ei/yunseokyeol/txscript) Package txscript implements the kaspa transaction script language. There is a comprehensive test suite. @@ -15,10 +15,10 @@ although it is still fairly powerful. ## Examples -* [Standard Pay-to-pubkey Script](http://godoc.org/github.com/c4ei/YunSeokYeol/txscript#example-PayToAddrScript) +* [Standard Pay-to-pubkey Script](http://godoc.org/github.com/c4ei/yunseokyeol/txscript#example-PayToAddrScript) Demonstrates creating a script which pays to a kaspa address. It also prints the created script hex and uses the DisasmString function to display the disassembled script. -* [Extracting Details from Standard Scripts](http://godoc.org/github.com/c4ei/YunSeokYeol/txscript#example-ExtractPkScriptAddrs) +* [Extracting Details from Standard Scripts](http://godoc.org/github.com/c4ei/yunseokyeol/txscript#example-ExtractPkScriptAddrs) Demonstrates extracting information from a standard public key script. diff --git a/domain/consensus/utils/txscript/engine.go b/domain/consensus/utils/txscript/engine.go index 136cbe883..123db53b3 100644 --- a/domain/consensus/utils/txscript/engine.go +++ b/domain/consensus/utils/txscript/engine.go @@ -7,10 +7,10 @@ package txscript import ( "fmt" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) // ScriptFlags is a bitmask defining additional operations or tests that will be diff --git a/domain/consensus/utils/txscript/engine_test.go b/domain/consensus/utils/txscript/engine_test.go index 1ec4d438d..a0a95bb40 100644 --- a/domain/consensus/utils/txscript/engine_test.go +++ b/domain/consensus/utils/txscript/engine_test.go @@ -7,9 +7,9 @@ package txscript import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // TestBadPC sets the pc to a deliberately bad result then confirms that Step() diff --git a/domain/consensus/utils/txscript/example_test.go b/domain/consensus/utils/txscript/example_test.go index 18ca4712d..b8b4a297e 100644 --- a/domain/consensus/utils/txscript/example_test.go +++ b/domain/consensus/utils/txscript/example_test.go @@ -8,11 +8,11 @@ import ( "encoding/hex" "fmt" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/util" ) // This example demonstrates creating a script which pays to a kaspa address. diff --git a/domain/consensus/utils/txscript/log.go b/domain/consensus/utils/txscript/log.go index 892015e82..a6095616b 100644 --- a/domain/consensus/utils/txscript/log.go +++ b/domain/consensus/utils/txscript/log.go @@ -5,7 +5,7 @@ package txscript import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("SCRP") diff --git a/domain/consensus/utils/txscript/main_test.go b/domain/consensus/utils/txscript/main_test.go index 74133f699..521f2e834 100644 --- a/domain/consensus/utils/txscript/main_test.go +++ b/domain/consensus/utils/txscript/main_test.go @@ -4,7 +4,7 @@ import ( "os" "testing" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) func TestMain(m *testing.M) { diff --git a/domain/consensus/utils/txscript/opcode.go b/domain/consensus/utils/txscript/opcode.go index 29a63182e..8943ff139 100644 --- a/domain/consensus/utils/txscript/opcode.go +++ b/domain/consensus/utils/txscript/opcode.go @@ -11,11 +11,11 @@ import ( "fmt" "hash" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" "golang.org/x/crypto/blake2b" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" "github.com/kaspanet/go-secp256k1" ) diff --git a/domain/consensus/utils/txscript/reference_test.go b/domain/consensus/utils/txscript/reference_test.go index d8e41f162..523048526 100644 --- a/domain/consensus/utils/txscript/reference_test.go +++ b/domain/consensus/utils/txscript/reference_test.go @@ -13,12 +13,12 @@ import ( "strings" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/infrastructure/logger" "github.com/pkg/errors" ) diff --git a/domain/consensus/utils/txscript/script.go b/domain/consensus/utils/txscript/script.go index e84428cd2..3f4e3dd07 100644 --- a/domain/consensus/utils/txscript/script.go +++ b/domain/consensus/utils/txscript/script.go @@ -8,9 +8,9 @@ import ( "bytes" "fmt" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // These are the constants specified for maximums in individual scripts. diff --git a/domain/consensus/utils/txscript/script_test.go b/domain/consensus/utils/txscript/script_test.go index de828773f..9487d37aa 100644 --- a/domain/consensus/utils/txscript/script_test.go +++ b/domain/consensus/utils/txscript/script_test.go @@ -10,7 +10,7 @@ import ( "reflect" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // TestParseOpcode tests for opcode parsing with bad data templates. diff --git a/domain/consensus/utils/txscript/sign.go b/domain/consensus/utils/txscript/sign.go index addd30b81..04dbece3e 100644 --- a/domain/consensus/utils/txscript/sign.go +++ b/domain/consensus/utils/txscript/sign.go @@ -5,13 +5,13 @@ package txscript import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" "github.com/kaspanet/go-secp256k1" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/util" ) // RawTxInSignature returns the serialized Schnorr signature for the input idx of diff --git a/domain/consensus/utils/txscript/sign_test.go b/domain/consensus/utils/txscript/sign_test.go index aabfee189..046ae2f5b 100644 --- a/domain/consensus/utils/txscript/sign_test.go +++ b/domain/consensus/utils/txscript/sign_test.go @@ -8,16 +8,16 @@ import ( "fmt" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/kaspanet/go-secp256k1" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/util" ) func mkGetKey(keys map[string]*secp256k1.SchnorrKeyPair) KeyDB { diff --git a/domain/consensus/utils/txscript/standard.go b/domain/consensus/utils/txscript/standard.go index c8219c933..67071244d 100644 --- a/domain/consensus/utils/txscript/standard.go +++ b/domain/consensus/utils/txscript/standard.go @@ -7,12 +7,12 @@ package txscript import ( "fmt" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/util" ) // ScriptClass is an enumeration for the list of standard types of script. diff --git a/domain/consensus/utils/txscript/standard_test.go b/domain/consensus/utils/txscript/standard_test.go index 3eea090fa..69581c907 100644 --- a/domain/consensus/utils/txscript/standard_test.go +++ b/domain/consensus/utils/txscript/standard_test.go @@ -9,10 +9,10 @@ import ( "reflect" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/util" ) // mustParseShortForm parses the passed short form script and returns the diff --git a/domain/consensus/utils/utxo/diff_algebra.go b/domain/consensus/utils/utxo/diff_algebra.go index a6951329f..4681c57e1 100644 --- a/domain/consensus/utils/utxo/diff_algebra.go +++ b/domain/consensus/utils/utxo/diff_algebra.go @@ -1,7 +1,7 @@ package utxo import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/domain/consensus/utils/utxo/diff_algebra_test.go b/domain/consensus/utils/utxo/diff_algebra_test.go index a4d8958b2..48fde360a 100644 --- a/domain/consensus/utils/utxo/diff_algebra_test.go +++ b/domain/consensus/utils/utxo/diff_algebra_test.go @@ -4,9 +4,9 @@ import ( "reflect" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionid" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionid" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) func (mud *mutableUTXODiff) equal(other *mutableUTXODiff) bool { diff --git a/domain/consensus/utils/utxo/immutable_utxo_diff.go b/domain/consensus/utils/utxo/immutable_utxo_diff.go index 601234fcd..d9316fe8c 100644 --- a/domain/consensus/utils/utxo/immutable_utxo_diff.go +++ b/domain/consensus/utils/utxo/immutable_utxo_diff.go @@ -1,7 +1,7 @@ package utxo import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/domain/consensus/utils/utxo/mutable_utxo_diff.go b/domain/consensus/utils/utxo/mutable_utxo_diff.go index 1ac50f129..4a4271755 100644 --- a/domain/consensus/utils/utxo/mutable_utxo_diff.go +++ b/domain/consensus/utils/utxo/mutable_utxo_diff.go @@ -3,9 +3,9 @@ package utxo import ( "fmt" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" "github.com/pkg/errors" ) diff --git a/domain/consensus/utils/utxo/serialization.go b/domain/consensus/utils/utxo/serialization.go index c18009787..a0fa9a0b5 100644 --- a/domain/consensus/utils/utxo/serialization.go +++ b/domain/consensus/utils/utxo/serialization.go @@ -4,9 +4,9 @@ import ( "bytes" "io" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionid" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionid" "github.com/pkg/errors" ) diff --git a/domain/consensus/utils/utxo/serialization_test.go b/domain/consensus/utils/utxo/serialization_test.go index a5cf6f2d0..a620b085a 100644 --- a/domain/consensus/utils/utxo/serialization_test.go +++ b/domain/consensus/utils/utxo/serialization_test.go @@ -5,7 +5,7 @@ import ( "reflect" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) func Benchmark_serializeUTXO(b *testing.B) { diff --git a/domain/consensus/utils/utxo/utxo_collection.go b/domain/consensus/utils/utxo/utxo_collection.go index e8cb30d2c..d3984a11e 100644 --- a/domain/consensus/utils/utxo/utxo_collection.go +++ b/domain/consensus/utils/utxo/utxo_collection.go @@ -5,7 +5,7 @@ import ( "sort" "strings" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type utxoCollection map[externalapi.DomainOutpoint]externalapi.UTXOEntry diff --git a/domain/consensus/utils/utxo/utxo_entry.go b/domain/consensus/utils/utxo/utxo_entry.go index 321f8a40c..9eebc4cc2 100644 --- a/domain/consensus/utils/utxo/utxo_entry.go +++ b/domain/consensus/utils/utxo/utxo_entry.go @@ -1,7 +1,7 @@ package utxo import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) type utxoEntry struct { diff --git a/domain/consensus/utils/utxo/utxo_entry_test.go b/domain/consensus/utils/utxo/utxo_entry_test.go index c86a29549..fcaf0474b 100644 --- a/domain/consensus/utils/utxo/utxo_entry_test.go +++ b/domain/consensus/utils/utxo/utxo_entry_test.go @@ -3,7 +3,7 @@ package utxo import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) func TestUTXOEntry_Equal(t *testing.T) { diff --git a/domain/consensus/utils/utxo/utxo_iterator.go b/domain/consensus/utils/utxo/utxo_iterator.go index f945278bd..4c970734c 100644 --- a/domain/consensus/utils/utxo/utxo_iterator.go +++ b/domain/consensus/utils/utxo/utxo_iterator.go @@ -1,7 +1,7 @@ package utxo import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/domain/consensus/utils/utxo/utxo_iterator_with_diff.go b/domain/consensus/utils/utxo/utxo_iterator_with_diff.go index a6d1f0753..0baaea4e8 100644 --- a/domain/consensus/utils/utxo/utxo_iterator_with_diff.go +++ b/domain/consensus/utils/utxo/utxo_iterator_with_diff.go @@ -1,7 +1,7 @@ package utxo import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/domain/consensus/utils/utxolrucache/utxolrucache.go b/domain/consensus/utils/utxolrucache/utxolrucache.go index 3a57e41ca..95e9d5062 100644 --- a/domain/consensus/utils/utxolrucache/utxolrucache.go +++ b/domain/consensus/utils/utxolrucache/utxolrucache.go @@ -1,7 +1,7 @@ package utxolrucache import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // LRUCache is a least-recently-used cache for UTXO entries diff --git a/domain/consensus/utils/virtual/virtual.go b/domain/consensus/utils/virtual/virtual.go index 12365cf32..b24d00d8b 100644 --- a/domain/consensus/utils/virtual/virtual.go +++ b/domain/consensus/utils/virtual/virtual.go @@ -1,8 +1,8 @@ package virtual import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // ContainsOnlyVirtualGenesis returns whether the given block hashes contain only the virtual diff --git a/domain/consensusreference/consensusreference.go b/domain/consensusreference/consensusreference.go index 7f1f1f71f..e72e9bed9 100644 --- a/domain/consensusreference/consensusreference.go +++ b/domain/consensusreference/consensusreference.go @@ -1,6 +1,6 @@ package consensusreference -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // ConsensusReference holds a reference to a consensus object. // The consensus object may be swapped with a new one entirely diff --git a/domain/dagconfig/README.md b/domain/dagconfig/README.md index 81b05769b..3ccea6da6 100644 --- a/domain/dagconfig/README.md +++ b/domain/dagconfig/README.md @@ -2,7 +2,7 @@ dagconfig ======== [![ISC License](http://img.shields.io/badge/license-ISC-blue.svg)](https://choosealicense.com/licenses/isc/) -[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](http://godoc.org/github.com/c4ei/YunSeokYeol/dagconfig) +[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](http://godoc.org/github.com/c4ei/yunseokyeol/dagconfig) Package dagconfig defines DAG configuration parameters for the standard Kaspad networks and provides the ability for callers to define their own custom @@ -18,8 +18,8 @@ import ( "fmt" "log" - "github.com/c4ei/YunSeokYeol/util" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/util" + "github.com/c4ei/yunseokyeol/domain/dagconfig" ) var testnet = flag.Bool("testnet", false, "operate on the testnet Kaspa network") diff --git a/domain/dagconfig/consensus_defaults.go b/domain/dagconfig/consensus_defaults.go index 079c502e9..186ba649f 100644 --- a/domain/dagconfig/consensus_defaults.go +++ b/domain/dagconfig/consensus_defaults.go @@ -3,7 +3,7 @@ package dagconfig import ( "time" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" ) // The documentation refers to the following constants which aren't explicated in the code: diff --git a/domain/dagconfig/doc.go b/domain/dagconfig/doc.go index fadcbf397..6ef399e4e 100644 --- a/domain/dagconfig/doc.go +++ b/domain/dagconfig/doc.go @@ -27,8 +27,8 @@ variable (either directly, or hidden in a library call). "fmt" "log" - "github.com/c4ei/YunSeokYeol/util" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/util" + "github.com/c4ei/yunseokyeol/domain/dagconfig" ) var testnet = flag.Bool("testnet", false, "operate on the testnet Kaspa network") diff --git a/domain/dagconfig/genesis.go b/domain/dagconfig/genesis.go index 0cb6d1d3d..a0d0b02c5 100644 --- a/domain/dagconfig/genesis.go +++ b/domain/dagconfig/genesis.go @@ -7,10 +7,10 @@ package dagconfig import ( "math/big" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/blockheader" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/blockheader" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" "github.com/kaspanet/go-muhash" ) diff --git a/domain/dagconfig/genesis_test.go b/domain/dagconfig/genesis_test.go index 8399bc374..7294b0585 100644 --- a/domain/dagconfig/genesis_test.go +++ b/domain/dagconfig/genesis_test.go @@ -7,7 +7,7 @@ package dagconfig import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" ) // TestGenesisBlock tests the genesis block of the main network for validity by diff --git a/domain/dagconfig/params.go b/domain/dagconfig/params.go index b660ce0c9..0a34882da 100644 --- a/domain/dagconfig/params.go +++ b/domain/dagconfig/params.go @@ -8,14 +8,14 @@ import ( "math/big" "time" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/util/network" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/util/network" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/util" ) // These variables are the DAG proof-of-work limit parameters for each default diff --git a/domain/dagconfig/params_test.go b/domain/dagconfig/params_test.go index a3288bd8c..7bcf4e39b 100644 --- a/domain/dagconfig/params_test.go +++ b/domain/dagconfig/params_test.go @@ -7,7 +7,7 @@ package dagconfig import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) func TestNewHashFromStr(t *testing.T) { diff --git a/domain/dagconfig/register_test.go b/domain/dagconfig/register_test.go index ea0a7e5cf..c0312227d 100644 --- a/domain/dagconfig/register_test.go +++ b/domain/dagconfig/register_test.go @@ -3,7 +3,7 @@ package dagconfig_test import ( "testing" - . "github.com/c4ei/YunSeokYeol/domain/dagconfig" + . "github.com/c4ei/yunseokyeol/domain/dagconfig" ) // Define some of the required parameters for a user-registered diff --git a/domain/domain.go b/domain/domain.go index 01cfc03e2..e403104f3 100644 --- a/domain/domain.go +++ b/domain/domain.go @@ -5,15 +5,15 @@ import ( "sync/atomic" "unsafe" - "github.com/c4ei/YunSeokYeol/domain/consensusreference" + "github.com/c4ei/yunseokyeol/domain/consensusreference" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/miningmanager" - "github.com/c4ei/YunSeokYeol/domain/miningmanager/mempool" - "github.com/c4ei/YunSeokYeol/domain/prefixmanager" - "github.com/c4ei/YunSeokYeol/domain/prefixmanager/prefix" - infrastructuredatabase "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/miningmanager" + "github.com/c4ei/yunseokyeol/domain/miningmanager/mempool" + "github.com/c4ei/yunseokyeol/domain/prefixmanager" + "github.com/c4ei/yunseokyeol/domain/prefixmanager/prefix" + infrastructuredatabase "github.com/c4ei/yunseokyeol/infrastructure/db/database" "github.com/pkg/errors" ) diff --git a/domain/domain_test.go b/domain/domain_test.go index 222a9031a..99057ffb7 100644 --- a/domain/domain_test.go +++ b/domain/domain_test.go @@ -9,14 +9,14 @@ import ( "strings" "testing" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/miningmanager/mempool" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database/ldb" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/miningmanager/mempool" + "github.com/c4ei/yunseokyeol/infrastructure/db/database/ldb" ) func TestCreateStagingConsensus(t *testing.T) { diff --git a/domain/log.go b/domain/log.go index fd8fb3695..8a7067fea 100644 --- a/domain/log.go +++ b/domain/log.go @@ -1,7 +1,7 @@ package domain import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("DOMN") diff --git a/domain/migrate.go b/domain/migrate.go index 2dbb77358..53bf87f40 100644 --- a/domain/migrate.go +++ b/domain/migrate.go @@ -3,7 +3,7 @@ package domain import ( "math" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/domain/miningmanager/blocktemplatebuilder/blocktemplatebuilder.go b/domain/miningmanager/blocktemplatebuilder/blocktemplatebuilder.go index 7d4685b20..18142519a 100644 --- a/domain/miningmanager/blocktemplatebuilder/blocktemplatebuilder.go +++ b/domain/miningmanager/blocktemplatebuilder/blocktemplatebuilder.go @@ -4,18 +4,18 @@ import ( "math" "sort" - "github.com/c4ei/YunSeokYeol/domain/consensus/processes/coinbasemanager" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/merkle" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" - "github.com/c4ei/YunSeokYeol/domain/consensusreference" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/domain/consensus/processes/coinbasemanager" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/merkle" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensusreference" + "github.com/c4ei/yunseokyeol/util/mstime" - "github.com/c4ei/YunSeokYeol/util/difficulty" + "github.com/c4ei/yunseokyeol/util/difficulty" - consensusexternalapi "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" - miningmanagerapi "github.com/c4ei/YunSeokYeol/domain/miningmanager/model" + consensusexternalapi "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" + miningmanagerapi "github.com/c4ei/yunseokyeol/domain/miningmanager/model" "github.com/pkg/errors" ) @@ -156,7 +156,7 @@ func (btb *blockTemplateBuilder) BuildBlockTemplate( if err != nil { // mempool.RemoveTransactions might return errors in situations that are perfectly fine in this context. // TODO: Once the mempool invariants are clear, this should be converted back `return nil, err`: - // https://github.com/c4ei/YunSeokYeol/issues/1553 + // https://github.com/c4ei/yunseokyeol/issues/1553 log.Criticalf("Error from mempool.RemoveTransactions: %+v", err) } // We can call this recursively without worry because this should almost never happen diff --git a/domain/miningmanager/blocktemplatebuilder/log.go b/domain/miningmanager/blocktemplatebuilder/log.go index a555a49aa..c6bc2a756 100644 --- a/domain/miningmanager/blocktemplatebuilder/log.go +++ b/domain/miningmanager/blocktemplatebuilder/log.go @@ -5,7 +5,7 @@ package blocktemplatebuilder import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("BLTB") diff --git a/domain/miningmanager/blocktemplatebuilder/txselection.go b/domain/miningmanager/blocktemplatebuilder/txselection.go index 73a1bd43b..cc56101bd 100644 --- a/domain/miningmanager/blocktemplatebuilder/txselection.go +++ b/domain/miningmanager/blocktemplatebuilder/txselection.go @@ -5,9 +5,9 @@ import ( "math/rand" "sort" - consensusexternalapi "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" + consensusexternalapi "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" ) const ( diff --git a/domain/miningmanager/factory.go b/domain/miningmanager/factory.go index f690b0854..1a2a37871 100644 --- a/domain/miningmanager/factory.go +++ b/domain/miningmanager/factory.go @@ -4,10 +4,10 @@ import ( "sync" "time" - "github.com/c4ei/YunSeokYeol/domain/consensusreference" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/domain/miningmanager/blocktemplatebuilder" - mempoolpkg "github.com/c4ei/YunSeokYeol/domain/miningmanager/mempool" + "github.com/c4ei/yunseokyeol/domain/consensusreference" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/miningmanager/blocktemplatebuilder" + mempoolpkg "github.com/c4ei/yunseokyeol/domain/miningmanager/mempool" ) // Factory instantiates new mining managers diff --git a/domain/miningmanager/mempool/check_transaction_standard.go b/domain/miningmanager/mempool/check_transaction_standard.go index 46004504f..e7310d0e4 100644 --- a/domain/miningmanager/mempool/check_transaction_standard.go +++ b/domain/miningmanager/mempool/check_transaction_standard.go @@ -3,13 +3,13 @@ package mempool import ( "fmt" - "github.com/c4ei/YunSeokYeol/util/txmass" + "github.com/c4ei/yunseokyeol/util/txmass" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" ) const ( diff --git a/domain/miningmanager/mempool/check_transaction_standard_test.go b/domain/miningmanager/mempool/check_transaction_standard_test.go index c04670e6b..ea15bc38e 100644 --- a/domain/miningmanager/mempool/check_transaction_standard_test.go +++ b/domain/miningmanager/mempool/check_transaction_standard_test.go @@ -9,17 +9,17 @@ import ( "math" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensusreference" + "github.com/c4ei/yunseokyeol/domain/consensusreference" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/util" "github.com/pkg/errors" ) diff --git a/domain/miningmanager/mempool/config.go b/domain/miningmanager/mempool/config.go index 92b89c8e5..27e847351 100644 --- a/domain/miningmanager/mempool/config.go +++ b/domain/miningmanager/mempool/config.go @@ -3,11 +3,11 @@ package mempool import ( "time" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/util" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/dagconfig" ) const ( diff --git a/domain/miningmanager/mempool/fill_inputs_and_get_missing_parents.go b/domain/miningmanager/mempool/fill_inputs_and_get_missing_parents.go index 32d8e1376..60a9868aa 100644 --- a/domain/miningmanager/mempool/fill_inputs_and_get_missing_parents.go +++ b/domain/miningmanager/mempool/fill_inputs_and_get_missing_parents.go @@ -1,11 +1,11 @@ package mempool import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/domain/miningmanager/mempool/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/miningmanager/mempool/model" "github.com/pkg/errors" ) diff --git a/domain/miningmanager/mempool/handle_new_block_transactions.go b/domain/miningmanager/mempool/handle_new_block_transactions.go index df2b5ff28..73ca7efa9 100644 --- a/domain/miningmanager/mempool/handle_new_block_transactions.go +++ b/domain/miningmanager/mempool/handle_new_block_transactions.go @@ -1,9 +1,9 @@ package mempool import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" ) func (mp *mempool) handleNewBlockTransactions(blockTransactions []*externalapi.DomainTransaction) ( diff --git a/domain/miningmanager/mempool/log.go b/domain/miningmanager/mempool/log.go index 434307a76..3d857340c 100644 --- a/domain/miningmanager/mempool/log.go +++ b/domain/miningmanager/mempool/log.go @@ -5,7 +5,7 @@ package mempool import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("TXMP") diff --git a/domain/miningmanager/mempool/mempool.go b/domain/miningmanager/mempool/mempool.go index 394f6af96..7a48286f9 100644 --- a/domain/miningmanager/mempool/mempool.go +++ b/domain/miningmanager/mempool/mempool.go @@ -3,10 +3,10 @@ package mempool import ( "sync" - "github.com/c4ei/YunSeokYeol/domain/consensusreference" + "github.com/c4ei/yunseokyeol/domain/consensusreference" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - miningmanagermodel "github.com/c4ei/YunSeokYeol/domain/miningmanager/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + miningmanagermodel "github.com/c4ei/yunseokyeol/domain/miningmanager/model" ) type mempool struct { diff --git a/domain/miningmanager/mempool/mempool_utxo_set.go b/domain/miningmanager/mempool/mempool_utxo_set.go index d3ab02f97..8d59d79ab 100644 --- a/domain/miningmanager/mempool/mempool_utxo_set.go +++ b/domain/miningmanager/mempool/mempool_utxo_set.go @@ -3,13 +3,13 @@ package mempool import ( "fmt" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/domain/miningmanager/mempool/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/miningmanager/mempool/model" ) type mempoolUTXOSet struct { diff --git a/domain/miningmanager/mempool/model/map_types.go b/domain/miningmanager/mempool/model/map_types.go index 671639955..1ddbefa90 100644 --- a/domain/miningmanager/mempool/model/map_types.go +++ b/domain/miningmanager/mempool/model/map_types.go @@ -1,7 +1,7 @@ package model import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // IDToTransactionMap maps transactionID to a MempoolTransaction diff --git a/domain/miningmanager/mempool/model/mempool_transaction.go b/domain/miningmanager/mempool/model/mempool_transaction.go index a2b341d8b..fc22eae1f 100644 --- a/domain/miningmanager/mempool/model/mempool_transaction.go +++ b/domain/miningmanager/mempool/model/mempool_transaction.go @@ -1,8 +1,8 @@ package model import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" ) // MempoolTransaction represents a transaction inside the main TransactionPool diff --git a/domain/miningmanager/mempool/model/orphan_transaction.go b/domain/miningmanager/mempool/model/orphan_transaction.go index 3c1ccd2a1..c40414778 100644 --- a/domain/miningmanager/mempool/model/orphan_transaction.go +++ b/domain/miningmanager/mempool/model/orphan_transaction.go @@ -1,8 +1,8 @@ package model import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" ) // OrphanTransaction represents a transaction in the OrphanPool diff --git a/domain/miningmanager/mempool/model/transaction.go b/domain/miningmanager/mempool/model/transaction.go index acf786014..93357eb0f 100644 --- a/domain/miningmanager/mempool/model/transaction.go +++ b/domain/miningmanager/mempool/model/transaction.go @@ -1,6 +1,6 @@ package model -import "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" +import "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" // Transaction represents a generic transaction either in the mempool's main TransactionPool or OrphanPool type Transaction interface { diff --git a/domain/miningmanager/mempool/orphan_pool.go b/domain/miningmanager/mempool/orphan_pool.go index ca7d9dfd8..dbad25666 100644 --- a/domain/miningmanager/mempool/orphan_pool.go +++ b/domain/miningmanager/mempool/orphan_pool.go @@ -3,16 +3,16 @@ package mempool import ( "fmt" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/ruleerrors" + "github.com/c4ei/yunseokyeol/domain/consensus/ruleerrors" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/miningmanager/mempool/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/miningmanager/mempool/model" "github.com/pkg/errors" ) diff --git a/domain/miningmanager/mempool/remove_transaction.go b/domain/miningmanager/mempool/remove_transaction.go index f45f3f229..f242d864a 100644 --- a/domain/miningmanager/mempool/remove_transaction.go +++ b/domain/miningmanager/mempool/remove_transaction.go @@ -1,9 +1,9 @@ package mempool import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/miningmanager/mempool/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/miningmanager/mempool/model" ) func (mp *mempool) removeTransactions(transactions []*externalapi.DomainTransaction, removeRedeemers bool) error { diff --git a/domain/miningmanager/mempool/revalidate_high_priority_transactions.go b/domain/miningmanager/mempool/revalidate_high_priority_transactions.go index 33acb871c..6d7f4fa24 100644 --- a/domain/miningmanager/mempool/revalidate_high_priority_transactions.go +++ b/domain/miningmanager/mempool/revalidate_high_priority_transactions.go @@ -1,9 +1,9 @@ package mempool import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/miningmanager/mempool/model" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/miningmanager/mempool/model" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) func (mp *mempool) revalidateHighPriorityTransactions() ([]*externalapi.DomainTransaction, error) { diff --git a/domain/miningmanager/mempool/transactions_pool.go b/domain/miningmanager/mempool/transactions_pool.go index f4e988903..c7b178fe5 100644 --- a/domain/miningmanager/mempool/transactions_pool.go +++ b/domain/miningmanager/mempool/transactions_pool.go @@ -5,9 +5,9 @@ import ( "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/miningmanager/mempool/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/miningmanager/mempool/model" ) type transactionsPool struct { diff --git a/domain/miningmanager/mempool/validate_and_insert_transaction.go b/domain/miningmanager/mempool/validate_and_insert_transaction.go index 256bfedfe..984f6d8bc 100644 --- a/domain/miningmanager/mempool/validate_and_insert_transaction.go +++ b/domain/miningmanager/mempool/validate_and_insert_transaction.go @@ -3,10 +3,10 @@ package mempool import ( "fmt" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" ) func (mp *mempool) validateAndInsertTransaction(transaction *externalapi.DomainTransaction, isHighPriority bool, diff --git a/domain/miningmanager/mempool/validate_transaction.go b/domain/miningmanager/mempool/validate_transaction.go index c01e9f3f3..e8c4e632b 100644 --- a/domain/miningmanager/mempool/validate_transaction.go +++ b/domain/miningmanager/mempool/validate_transaction.go @@ -3,8 +3,8 @@ package mempool import ( "fmt" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" ) func (mp *mempool) validateTransactionPreUTXOEntry(transaction *externalapi.DomainTransaction) error { diff --git a/domain/miningmanager/miningmanager.go b/domain/miningmanager/miningmanager.go index 450fe13c4..c816b04d6 100644 --- a/domain/miningmanager/miningmanager.go +++ b/domain/miningmanager/miningmanager.go @@ -4,9 +4,9 @@ import ( "sync" "time" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensusreference" - miningmanagermodel "github.com/c4ei/YunSeokYeol/domain/miningmanager/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensusreference" + miningmanagermodel "github.com/c4ei/yunseokyeol/domain/miningmanager/model" ) // MiningManager creates block templates for mining as well as maintaining diff --git a/domain/miningmanager/miningmanager_test.go b/domain/miningmanager/miningmanager_test.go index 66f76821e..942634d6b 100644 --- a/domain/miningmanager/miningmanager_test.go +++ b/domain/miningmanager/miningmanager_test.go @@ -5,25 +5,25 @@ import ( "strings" "testing" - "github.com/c4ei/YunSeokYeol/cmd/kaspawallet/libkaspawallet" - "github.com/c4ei/YunSeokYeol/domain/consensusreference" - "github.com/c4ei/YunSeokYeol/domain/miningmanager/model" - "github.com/c4ei/YunSeokYeol/util" - "github.com/c4ei/YunSeokYeol/version" + "github.com/c4ei/yunseokyeol/cmd/kaspawallet/libkaspawallet" + "github.com/c4ei/yunseokyeol/domain/consensusreference" + "github.com/c4ei/yunseokyeol/domain/miningmanager/model" + "github.com/c4ei/yunseokyeol/util" + "github.com/c4ei/yunseokyeol/version" - "github.com/c4ei/YunSeokYeol/domain/miningmanager/mempool" + "github.com/c4ei/yunseokyeol/domain/miningmanager/mempool" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/domain/miningmanager" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/miningmanager" "github.com/pkg/errors" ) diff --git a/domain/miningmanager/model/interface_blocktemplatebuilder.go b/domain/miningmanager/model/interface_blocktemplatebuilder.go index 70f006500..33104aa00 100644 --- a/domain/miningmanager/model/interface_blocktemplatebuilder.go +++ b/domain/miningmanager/model/interface_blocktemplatebuilder.go @@ -1,7 +1,7 @@ package model import ( - consensusexternalapi "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + consensusexternalapi "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // BlockTemplateBuilder builds block templates for miners to consume diff --git a/domain/miningmanager/model/interface_mempool.go b/domain/miningmanager/model/interface_mempool.go index ace7b9a3c..ffc51b908 100644 --- a/domain/miningmanager/model/interface_mempool.go +++ b/domain/miningmanager/model/interface_mempool.go @@ -1,7 +1,7 @@ package model import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // Mempool maintains a set of known transactions that diff --git a/domain/prefixmanager/log.go b/domain/prefixmanager/log.go index 6403ebe8c..def6c240b 100644 --- a/domain/prefixmanager/log.go +++ b/domain/prefixmanager/log.go @@ -1,8 +1,8 @@ package prefixmanager import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var log = logger.RegisterSubSystem("PRFX") diff --git a/domain/prefixmanager/prefix.go b/domain/prefixmanager/prefix.go index f44ceb5b2..59c044c28 100644 --- a/domain/prefixmanager/prefix.go +++ b/domain/prefixmanager/prefix.go @@ -1,8 +1,8 @@ package prefixmanager import ( - "github.com/c4ei/YunSeokYeol/domain/prefixmanager/prefix" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/domain/prefixmanager/prefix" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" ) var activePrefixKey = database.MakeBucket(nil).Key([]byte("active-prefix")) diff --git a/domain/utxoindex/log.go b/domain/utxoindex/log.go index 4ff02b759..e45504f2a 100644 --- a/domain/utxoindex/log.go +++ b/domain/utxoindex/log.go @@ -5,7 +5,7 @@ package utxoindex import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("UTIN") diff --git a/domain/utxoindex/model.go b/domain/utxoindex/model.go index 8be805528..4b183708b 100644 --- a/domain/utxoindex/model.go +++ b/domain/utxoindex/model.go @@ -1,7 +1,7 @@ package utxoindex import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) // ScriptPublicKeyString is a script public key represented as a string diff --git a/domain/utxoindex/serialization.go b/domain/utxoindex/serialization.go index bd81fc1c1..d8bddabac 100644 --- a/domain/utxoindex/serialization.go +++ b/domain/utxoindex/serialization.go @@ -4,8 +4,8 @@ import ( "encoding/binary" "io" - "github.com/c4ei/YunSeokYeol/domain/consensus/database/serialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/database/serialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" "google.golang.org/protobuf/proto" ) diff --git a/domain/utxoindex/serialization_test.go b/domain/utxoindex/serialization_test.go index 59bb67f45..e74fd6a9d 100644 --- a/domain/utxoindex/serialization_test.go +++ b/domain/utxoindex/serialization_test.go @@ -6,7 +6,7 @@ import ( "math/rand" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/domain/utxoindex/store.go b/domain/utxoindex/store.go index ab0c335c4..2d1230ebd 100644 --- a/domain/utxoindex/store.go +++ b/domain/utxoindex/store.go @@ -3,10 +3,10 @@ package utxoindex import ( "encoding/binary" - "github.com/c4ei/YunSeokYeol/domain/consensus/database/binaryserialization" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain/consensus/database/binaryserialization" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/logger" "github.com/pkg/errors" ) diff --git a/domain/utxoindex/utxoindex.go b/domain/utxoindex/utxoindex.go index af5d07e60..95de3960f 100644 --- a/domain/utxoindex/utxoindex.go +++ b/domain/utxoindex/utxoindex.go @@ -3,10 +3,10 @@ package utxoindex import ( "sync" - "github.com/c4ei/YunSeokYeol/domain" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) // UTXOIndex maintains an index between transaction scriptPublicKeys diff --git a/infrastructure/config/config.go b/infrastructure/config/config.go index f362f7ba2..a65878f9c 100644 --- a/infrastructure/config/config.go +++ b/infrastructure/config/config.go @@ -17,12 +17,12 @@ import ( "time" "github.com/btcsuite/go-socks/socks" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util" - "github.com/c4ei/YunSeokYeol/util/network" - "github.com/c4ei/YunSeokYeol/version" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util" + "github.com/c4ei/yunseokyeol/util/network" + "github.com/c4ei/yunseokyeol/version" "github.com/jessevdk/go-flags" "github.com/pkg/errors" ) diff --git a/infrastructure/config/config_test.go b/infrastructure/config/config_test.go index d68463b12..c1216e8e0 100644 --- a/infrastructure/config/config_test.go +++ b/infrastructure/config/config_test.go @@ -7,9 +7,9 @@ import ( "runtime" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) func TestCreateDefaultConfigFile(t *testing.T) { diff --git a/infrastructure/config/log.go b/infrastructure/config/log.go index 571a2876f..681c10b41 100644 --- a/infrastructure/config/log.go +++ b/infrastructure/config/log.go @@ -5,7 +5,7 @@ package config import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("CNFG") diff --git a/infrastructure/config/network.go b/infrastructure/config/network.go index 313ba36bc..38de9ec2b 100644 --- a/infrastructure/config/network.go +++ b/infrastructure/config/network.go @@ -7,10 +7,10 @@ import ( "os" "time" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/util/difficulty" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/util/difficulty" "github.com/jessevdk/go-flags" "github.com/pkg/errors" ) diff --git a/infrastructure/db/database/README.md b/infrastructure/db/database/README.md index 1c467a703..362c91df8 100644 --- a/infrastructure/db/database/README.md +++ b/infrastructure/db/database/README.md @@ -2,7 +2,7 @@ database ======== [![ISC License](http://img.shields.io/badge/license-ISC-blue.svg)](https://choosealicense.com/licenses/isc/) -[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](http://godoc.org/github.com/c4ei/YunSeokYeol/database) +[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](http://godoc.org/github.com/c4ei/yunseokyeol/database) Package database provides a database for kaspad. diff --git a/infrastructure/db/database/common_test.go b/infrastructure/db/database/common_test.go index d909cf3bd..6ed2ebc5d 100644 --- a/infrastructure/db/database/common_test.go +++ b/infrastructure/db/database/common_test.go @@ -5,8 +5,8 @@ import ( "io/ioutil" "testing" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database/ldb" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/db/database/ldb" ) type databasePrepareFunc func(t *testing.T, testName string) (db database.Database, name string, teardownFunc func()) diff --git a/infrastructure/db/database/cursor_test.go b/infrastructure/db/database/cursor_test.go index 0161e9f03..1b9b82024 100644 --- a/infrastructure/db/database/cursor_test.go +++ b/infrastructure/db/database/cursor_test.go @@ -12,7 +12,7 @@ import ( "strings" "testing" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" ) func prepareCursorForTest(t *testing.T, db database.Database, testName string) database.Cursor { diff --git a/infrastructure/db/database/database_test.go b/infrastructure/db/database/database_test.go index fe2466e2c..b65289515 100644 --- a/infrastructure/db/database/database_test.go +++ b/infrastructure/db/database/database_test.go @@ -9,7 +9,7 @@ import ( "bytes" "testing" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" ) func TestDatabasePut(t *testing.T) { diff --git a/infrastructure/db/database/ldb/cursor.go b/infrastructure/db/database/ldb/cursor.go index cfc37e6cf..2e0b19404 100644 --- a/infrastructure/db/database/ldb/cursor.go +++ b/infrastructure/db/database/ldb/cursor.go @@ -3,7 +3,7 @@ package ldb import ( "bytes" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" "github.com/pkg/errors" "github.com/syndtr/goleveldb/leveldb/iterator" "github.com/syndtr/goleveldb/leveldb/util" diff --git a/infrastructure/db/database/ldb/cursor_test.go b/infrastructure/db/database/ldb/cursor_test.go index 07459613b..2724b9fe7 100644 --- a/infrastructure/db/database/ldb/cursor_test.go +++ b/infrastructure/db/database/ldb/cursor_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" ) func validateCurrentCursorKeyAndValue(t *testing.T, testName string, cursor database.Cursor, diff --git a/infrastructure/db/database/ldb/leveldb.go b/infrastructure/db/database/ldb/leveldb.go index b24f47b57..7bca8df8d 100644 --- a/infrastructure/db/database/ldb/leveldb.go +++ b/infrastructure/db/database/ldb/leveldb.go @@ -1,7 +1,7 @@ package ldb import ( - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" "github.com/pkg/errors" "github.com/syndtr/goleveldb/leveldb" ldbErrors "github.com/syndtr/goleveldb/leveldb/errors" diff --git a/infrastructure/db/database/ldb/leveldb_test.go b/infrastructure/db/database/ldb/leveldb_test.go index 0872e7a3b..74d2d1d28 100644 --- a/infrastructure/db/database/ldb/leveldb_test.go +++ b/infrastructure/db/database/ldb/leveldb_test.go @@ -5,7 +5,7 @@ import ( "reflect" "testing" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" ) func prepareDatabaseForTest(t *testing.T, testName string) (ldb *LevelDB, teardownFunc func()) { diff --git a/infrastructure/db/database/ldb/log.go b/infrastructure/db/database/ldb/log.go index 5654eff16..ffe966426 100644 --- a/infrastructure/db/database/ldb/log.go +++ b/infrastructure/db/database/ldb/log.go @@ -1,7 +1,7 @@ package ldb import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("KSDB") diff --git a/infrastructure/db/database/ldb/transaction.go b/infrastructure/db/database/ldb/transaction.go index 4bf360fe8..6e1d1276b 100644 --- a/infrastructure/db/database/ldb/transaction.go +++ b/infrastructure/db/database/ldb/transaction.go @@ -1,7 +1,7 @@ package ldb import ( - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" "github.com/pkg/errors" "github.com/syndtr/goleveldb/leveldb" ) diff --git a/infrastructure/db/database/ldb/transaction_test.go b/infrastructure/db/database/ldb/transaction_test.go index e6f4e4998..794a09603 100644 --- a/infrastructure/db/database/ldb/transaction_test.go +++ b/infrastructure/db/database/ldb/transaction_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" ) func TestTransactionCloseErrors(t *testing.T) { diff --git a/infrastructure/db/database/transaction_test.go b/infrastructure/db/database/transaction_test.go index 82f49966e..69357a158 100644 --- a/infrastructure/db/database/transaction_test.go +++ b/infrastructure/db/database/transaction_test.go @@ -10,7 +10,7 @@ import ( "strings" "testing" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" ) func TestTransactionPut(t *testing.T) { diff --git a/infrastructure/logger/logs.go b/infrastructure/logger/logs.go index f20689937..195f0edc8 100644 --- a/infrastructure/logger/logs.go +++ b/infrastructure/logger/logs.go @@ -39,7 +39,7 @@ import ( "runtime" "sync/atomic" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/util/mstime" ) // Logger is a subsystem logger for a Backend. diff --git a/infrastructure/network/addressmanager/addressmanager.go b/infrastructure/network/addressmanager/addressmanager.go index 966a744ad..af99e62da 100644 --- a/infrastructure/network/addressmanager/addressmanager.go +++ b/infrastructure/network/addressmanager/addressmanager.go @@ -9,10 +9,10 @@ import ( "sync" "time" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/util/mstime" - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/addressmanager/addressmanager_test.go b/infrastructure/network/addressmanager/addressmanager_test.go index aed5a6b0e..d381b03ff 100644 --- a/infrastructure/network/addressmanager/addressmanager_test.go +++ b/infrastructure/network/addressmanager/addressmanager_test.go @@ -9,10 +9,10 @@ import ( "reflect" "testing" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database/ldb" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/db/database/ldb" + "github.com/c4ei/yunseokyeol/util/mstime" ) func newAddressManagerForTest(t *testing.T, testName string) (addressManager *AddressManager, teardown func()) { diff --git a/infrastructure/network/addressmanager/addressrandomize.go b/infrastructure/network/addressmanager/addressrandomize.go index e10094ab3..5dd3f7ed3 100644 --- a/infrastructure/network/addressmanager/addressrandomize.go +++ b/infrastructure/network/addressmanager/addressrandomize.go @@ -5,7 +5,7 @@ import ( "math/rand" "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" ) // AddressRandomize implement addressRandomizer interface diff --git a/infrastructure/network/addressmanager/config.go b/infrastructure/network/addressmanager/config.go index 5b65bf051..ded391683 100644 --- a/infrastructure/network/addressmanager/config.go +++ b/infrastructure/network/addressmanager/config.go @@ -3,7 +3,7 @@ package addressmanager import ( "net" - "github.com/c4ei/YunSeokYeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/config" ) // Config is a descriptor which specifies the AddressManager instance configuration. diff --git a/infrastructure/network/addressmanager/localaddressmanager.go b/infrastructure/network/addressmanager/localaddressmanager.go index d66394378..72b017919 100644 --- a/infrastructure/network/addressmanager/localaddressmanager.go +++ b/infrastructure/network/addressmanager/localaddressmanager.go @@ -7,7 +7,7 @@ import ( "strings" "sync" - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/addressmanager/log.go b/infrastructure/network/addressmanager/log.go index 0ffa85a34..5487db117 100644 --- a/infrastructure/network/addressmanager/log.go +++ b/infrastructure/network/addressmanager/log.go @@ -5,7 +5,7 @@ package addressmanager import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("ADXR") diff --git a/infrastructure/network/addressmanager/network.go b/infrastructure/network/addressmanager/network.go index 2f46a42dd..2d7ae9aca 100644 --- a/infrastructure/network/addressmanager/network.go +++ b/infrastructure/network/addressmanager/network.go @@ -7,7 +7,7 @@ package addressmanager import ( "net" - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" ) var ( diff --git a/infrastructure/network/addressmanager/network_test.go b/infrastructure/network/addressmanager/network_test.go index bfff5811b..9f7ef9b9d 100644 --- a/infrastructure/network/addressmanager/network_test.go +++ b/infrastructure/network/addressmanager/network_test.go @@ -8,7 +8,7 @@ import ( "net" "testing" - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" ) // TestIPTypes ensures the various functions which determine the type of an IP diff --git a/infrastructure/network/addressmanager/store.go b/infrastructure/network/addressmanager/store.go index b74803e52..96c007701 100644 --- a/infrastructure/network/addressmanager/store.go +++ b/infrastructure/network/addressmanager/store.go @@ -4,9 +4,9 @@ import ( "encoding/binary" "net" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/util/mstime" "github.com/pkg/errors" ) diff --git a/infrastructure/network/addressmanager/store_test.go b/infrastructure/network/addressmanager/store_test.go index 219a02c3d..e79a84725 100644 --- a/infrastructure/network/addressmanager/store_test.go +++ b/infrastructure/network/addressmanager/store_test.go @@ -5,8 +5,8 @@ import ( "reflect" "testing" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/util/mstime" ) func TestAddressKeySerialization(t *testing.T) { diff --git a/infrastructure/network/addressmanager/test_utils.go b/infrastructure/network/addressmanager/test_utils.go index fdde9ffcc..ab918b27b 100644 --- a/infrastructure/network/addressmanager/test_utils.go +++ b/infrastructure/network/addressmanager/test_utils.go @@ -4,8 +4,8 @@ import ( "net" "strconv" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/infrastructure/network/connmanager/connection_set.go b/infrastructure/network/connmanager/connection_set.go index 6c101a825..78bfca126 100644 --- a/infrastructure/network/connmanager/connection_set.go +++ b/infrastructure/network/connmanager/connection_set.go @@ -1,7 +1,7 @@ package connmanager import ( - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter" ) type connectionSet map[string]*netadapter.NetConnection diff --git a/infrastructure/network/connmanager/connmanager.go b/infrastructure/network/connmanager/connmanager.go index 2b6a2b4aa..66b474e61 100644 --- a/infrastructure/network/connmanager/connmanager.go +++ b/infrastructure/network/connmanager/connmanager.go @@ -6,15 +6,15 @@ import ( "sync/atomic" "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/infrastructure/network/dnsseed" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/infrastructure/network/dnsseed" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/infrastructure/network/addressmanager" + "github.com/c4ei/yunseokyeol/infrastructure/network/addressmanager" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter" - "github.com/c4ei/YunSeokYeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/config" ) // connectionRequest represents a user request (either through CLI or RPC) to connect to a certain node diff --git a/infrastructure/network/connmanager/log.go b/infrastructure/network/connmanager/log.go index bda316191..26d8ae1b2 100644 --- a/infrastructure/network/connmanager/log.go +++ b/infrastructure/network/connmanager/log.go @@ -1,8 +1,8 @@ package connmanager import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var log = logger.RegisterSubSystem("CMGR") diff --git a/infrastructure/network/connmanager/outgoing_connections.go b/infrastructure/network/connmanager/outgoing_connections.go index 985575db1..3ce71387a 100644 --- a/infrastructure/network/connmanager/outgoing_connections.go +++ b/infrastructure/network/connmanager/outgoing_connections.go @@ -1,6 +1,6 @@ package connmanager -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // checkOutgoingConnections goes over all activeOutgoing and makes sure they are still active. // Then it opens connections so that we have targetOutgoing active connections diff --git a/infrastructure/network/dnsseed/log.go b/infrastructure/network/dnsseed/log.go index 42576fbbe..053f21cd6 100644 --- a/infrastructure/network/dnsseed/log.go +++ b/infrastructure/network/dnsseed/log.go @@ -5,8 +5,8 @@ package dnsseed import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var log = logger.RegisterSubSystem("CMGR") diff --git a/infrastructure/network/dnsseed/pb/peer_service.proto b/infrastructure/network/dnsseed/pb/peer_service.proto index e540fc723..97480a6c3 100644 --- a/infrastructure/network/dnsseed/pb/peer_service.proto +++ b/infrastructure/network/dnsseed/pb/peer_service.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -option go_package = "github.com/c4ei/YunSeokYeol/pb"; +option go_package = "github.com/c4ei/yunseokyeol/pb"; service PeerService { rpc GetPeersList(GetPeersListRequest) returns (GetPeersListResponse) {} diff --git a/infrastructure/network/dnsseed/seed.go b/infrastructure/network/dnsseed/seed.go index 85e5e583e..8a6fc1e19 100644 --- a/infrastructure/network/dnsseed/seed.go +++ b/infrastructure/network/dnsseed/seed.go @@ -12,15 +12,15 @@ import ( "strconv" "time" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/app/appmessage" - pb2 "github.com/c4ei/YunSeokYeol/infrastructure/network/dnsseed/pb" + "github.com/c4ei/yunseokyeol/app/appmessage" + pb2 "github.com/c4ei/yunseokyeol/infrastructure/network/dnsseed/pb" "google.golang.org/grpc" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/util/mstime" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/dagconfig" ) const ( diff --git a/infrastructure/network/netadapter/log.go b/infrastructure/network/netadapter/log.go index 94227dd5a..37b9b39ca 100644 --- a/infrastructure/network/netadapter/log.go +++ b/infrastructure/network/netadapter/log.go @@ -1,7 +1,7 @@ package netadapter import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("NTAR") diff --git a/infrastructure/network/netadapter/netadapter.go b/infrastructure/network/netadapter/netadapter.go index 848410060..d0f75998c 100644 --- a/infrastructure/network/netadapter/netadapter.go +++ b/infrastructure/network/netadapter/netadapter.go @@ -4,12 +4,12 @@ import ( "sync" "sync/atomic" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/id" - routerpkg "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/server" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/server/grpcserver" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/id" + routerpkg "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/server" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/server/grpcserver" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/netadapter_test.go b/infrastructure/network/netadapter/netadapter_test.go index d5aebefc5..66f70c7a9 100644 --- a/infrastructure/network/netadapter/netadapter_test.go +++ b/infrastructure/network/netadapter/netadapter_test.go @@ -6,10 +6,10 @@ import ( "testing" "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // routerInitializerForTest returns new RouterInitializer which simply sets diff --git a/infrastructure/network/netadapter/netconnection.go b/infrastructure/network/netadapter/netconnection.go index 75c3753b3..09667a590 100644 --- a/infrastructure/network/netadapter/netconnection.go +++ b/infrastructure/network/netadapter/netconnection.go @@ -4,12 +4,12 @@ import ( "fmt" "sync/atomic" - "github.com/c4ei/YunSeokYeol/app/appmessage" - routerpkg "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + routerpkg "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/id" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/server" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/id" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/server" ) // NetConnection is a wrapper to a server connection for use by services external to NetAdapter diff --git a/infrastructure/network/netadapter/router/log.go b/infrastructure/network/netadapter/router/log.go index b1a39938d..e7777f93e 100644 --- a/infrastructure/network/netadapter/router/log.go +++ b/infrastructure/network/netadapter/router/log.go @@ -1,7 +1,7 @@ package router import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("ROUT") diff --git a/infrastructure/network/netadapter/router/route.go b/infrastructure/network/netadapter/router/route.go index 47db65a38..301cda146 100644 --- a/infrastructure/network/netadapter/router/route.go +++ b/infrastructure/network/netadapter/router/route.go @@ -4,9 +4,9 @@ import ( "sync" "time" - "github.com/c4ei/YunSeokYeol/app/protocol/protocolerrors" + "github.com/c4ei/yunseokyeol/app/protocol/protocolerrors" - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/router/router.go b/infrastructure/network/netadapter/router/router.go index eff4630e2..7c38654cf 100644 --- a/infrastructure/network/netadapter/router/router.go +++ b/infrastructure/network/netadapter/router/router.go @@ -4,7 +4,7 @@ import ( "fmt" "sync" - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/connection_loops.go b/infrastructure/network/netadapter/server/grpcserver/connection_loops.go index b2f701e7d..24c4a97cb 100644 --- a/infrastructure/network/netadapter/server/grpcserver/connection_loops.go +++ b/infrastructure/network/netadapter/server/grpcserver/connection_loops.go @@ -7,14 +7,14 @@ import ( "sync" "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/infrastructure/logger" "github.com/davecgh/go-spew/spew" - routerpkg "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + routerpkg "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/server/grpcserver/protowire" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/server/grpcserver/protowire" ) func (c *gRPCConnection) connectionLoops() error { diff --git a/infrastructure/network/netadapter/server/grpcserver/grpc_connection.go b/infrastructure/network/netadapter/server/grpcserver/grpc_connection.go index c398508c2..badf378c7 100644 --- a/infrastructure/network/netadapter/server/grpcserver/grpc_connection.go +++ b/infrastructure/network/netadapter/server/grpcserver/grpc_connection.go @@ -5,13 +5,13 @@ import ( "sync" "sync/atomic" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/server/grpcserver/protowire" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/server/grpcserver/protowire" "github.com/pkg/errors" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/server" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/server" "google.golang.org/grpc" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/grpc_server.go b/infrastructure/network/netadapter/server/grpcserver/grpc_server.go index 1d0f8c431..1c605d273 100644 --- a/infrastructure/network/netadapter/server/grpcserver/grpc_server.go +++ b/infrastructure/network/netadapter/server/grpcserver/grpc_server.go @@ -7,8 +7,8 @@ import ( "sync" "time" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/server" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/server" + "github.com/c4ei/yunseokyeol/util/panics" "github.com/pkg/errors" "google.golang.org/grpc" "google.golang.org/grpc/peer" diff --git a/infrastructure/network/netadapter/server/grpcserver/log.go b/infrastructure/network/netadapter/server/grpcserver/log.go index 22865c352..c2a138c45 100644 --- a/infrastructure/network/netadapter/server/grpcserver/log.go +++ b/infrastructure/network/netadapter/server/grpcserver/log.go @@ -5,8 +5,8 @@ package grpcserver import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var log = logger.RegisterSubSystem("TXMP") diff --git a/infrastructure/network/netadapter/server/grpcserver/p2pserver.go b/infrastructure/network/netadapter/server/grpcserver/p2pserver.go index affcc0cfc..ae272b2d6 100644 --- a/infrastructure/network/netadapter/server/grpcserver/p2pserver.go +++ b/infrastructure/network/netadapter/server/grpcserver/p2pserver.go @@ -5,9 +5,9 @@ import ( "net" "time" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/server" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/server/grpcserver/protowire" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/server" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/server/grpcserver/protowire" + "github.com/c4ei/yunseokyeol/util/panics" "github.com/pkg/errors" "google.golang.org/grpc" "google.golang.org/grpc/encoding/gzip" diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/common.go b/infrastructure/network/netadapter/server/grpcserver/protowire/common.go index e5e64ef21..a63845c01 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/common.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/common.go @@ -3,12 +3,12 @@ package protowire import ( "math" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionid" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionid" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/util/mstime" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/messages.proto b/infrastructure/network/netadapter/server/grpcserver/protowire/messages.proto index b61e383ea..b6b04d4f0 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/messages.proto +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/messages.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package protowire; -option go_package = "github.com/c4ei/YunSeokYeol/protowire"; +option go_package = "github.com/c4ei/yunseokyeol/protowire"; import "p2p.proto"; import "rpc.proto"; diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p.proto b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p.proto index 3fd8ac0e3..72a245a5a 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p.proto +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package protowire; -option go_package = "github.com/c4ei/YunSeokYeol/protowire"; +option go_package = "github.com/c4ei/yunseokyeol/protowire"; message RequestAddressesMessage{ bool includeAllSubnetworks = 1; diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_addresses.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_addresses.go index af067c89c..bb29930cc 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_addresses.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_addresses.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block.go index 443ce41a0..213df26ba 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block_headers.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block_headers.go index 0ec99e6ba..73be3d58f 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block_headers.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block_headers.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block_locator.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block_locator.go index 9ae5316c2..dd785fec0 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block_locator.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block_locator.go @@ -1,8 +1,8 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block_with_trusted_data.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block_with_trusted_data.go index 29ecab8a8..d4c809c9d 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block_with_trusted_data.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block_with_trusted_data.go @@ -3,8 +3,8 @@ package protowire import ( "math/big" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block_with_trusted_data_v4.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block_with_trusted_data_v4.go index dfb12e58a..2d06dc19f 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block_with_trusted_data_v4.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_block_with_trusted_data_v4.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_done_blocks_with_trusted_data.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_done_blocks_with_trusted_data.go index e18b89877..c0644dd7b 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_done_blocks_with_trusted_data.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_done_blocks_with_trusted_data.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_done_headers.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_done_headers.go index 898910ebf..160db1ddb 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_done_headers.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_done_headers.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_done_pruning_point_utxo_set_chunks.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_done_pruning_point_utxo_set_chunks.go index 41d42e432..773f10662 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_done_pruning_point_utxo_set_chunks.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_done_pruning_point_utxo_set_chunks.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_header.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_header.go index 370c56d6c..bedc3d6d2 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_header.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_header.go @@ -4,9 +4,9 @@ import ( "math" "math/big" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/util/mstime" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_block.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_block.go index 20222fc7f..bd774c907 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_block.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_block.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_block_locator.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_block_locator.go index dbb5e666c..8aeeffca3 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_block_locator.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_block_locator.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_block_locator_highest_hash.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_block_locator_highest_hash.go index ab8b61aa9..ac68e4f40 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_block_locator_highest_hash.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_block_locator_highest_hash.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_block_locator_highest_hash_not_found.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_block_locator_highest_hash_not_found.go index a025d9e97..f43a54346 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_block_locator_highest_hash_not_found.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_block_locator_highest_hash_not_found.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_chain_block_locator.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_chain_block_locator.go index d75a6df3f..56571362f 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_chain_block_locator.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ibd_chain_block_locator.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_inv_relay_block.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_inv_relay_block.go index 2990920c9..5034ff962 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_inv_relay_block.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_inv_relay_block.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_inv_transactions.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_inv_transactions.go index 1114ea4ca..dc0c9902f 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_inv_transactions.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_inv_transactions.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ping.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ping.go index b7bea1bae..5ca3c972b 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ping.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ping.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_pong.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_pong.go index 6a69de2be..eb447f3c2 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_pong.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_pong.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_pruning_point_proof.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_pruning_point_proof.go index 8eb2812f4..fe18ca6f9 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_pruning_point_proof.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_pruning_point_proof.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_pruning_point_utxo_set_chunk.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_pruning_point_utxo_set_chunk.go index 9a6e0c4c6..d2c8665cf 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_pruning_point_utxo_set_chunk.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_pruning_point_utxo_set_chunk.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_pruning_points.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_pruning_points.go index 306a3eb02..3b32ebc3c 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_pruning_points.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_pruning_points.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ready.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ready.go index b54eacea1..f5c95505c 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ready.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_ready.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_reject.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_reject.go index d12f37400..dfb8d079f 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_reject.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_reject.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_addresses.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_addresses.go index 7d6473477..fa327fb4f 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_addresses.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_addresses.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_anticone.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_anticone.go index e01265218..f9456017c 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_anticone.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_anticone.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_block_locator.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_block_locator.go index 7b4093aac..5ee020a45 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_block_locator.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_block_locator.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_headers.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_headers.go index acbbfaf51..156ff326c 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_headers.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_headers.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_ibd_blocks.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_ibd_blocks.go index 765bc11fb..e9332941b 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_ibd_blocks.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_ibd_blocks.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_ibd_chain_block_locator.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_ibd_chain_block_locator.go index c168b1598..a55415dff 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_ibd_chain_block_locator.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_ibd_chain_block_locator.go @@ -1,8 +1,8 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_next_headers.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_next_headers.go index 312e178c4..a11464114 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_next_headers.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_next_headers.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_next_pruning_point_and_its_anticone_blocks.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_next_pruning_point_and_its_anticone_blocks.go index 67e7ce4b3..02c8652d7 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_next_pruning_point_and_its_anticone_blocks.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_next_pruning_point_and_its_anticone_blocks.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_next_pruning_point_utxo_set_chunk.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_next_pruning_point_utxo_set_chunk.go index fccfa0be8..62b695f22 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_next_pruning_point_utxo_set_chunk.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_next_pruning_point_utxo_set_chunk.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_pruning_point_and_its_anticone.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_pruning_point_and_its_anticone.go index 48c3ed568..cc0e054b3 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_pruning_point_and_its_anticone.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_pruning_point_and_its_anticone.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_pruning_point_proof.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_pruning_point_proof.go index 889910b5a..e0dc49f6e 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_pruning_point_proof.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_pruning_point_proof.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_pruning_point_utxo_set_and_block.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_pruning_point_utxo_set_and_block.go index 175bb4ab9..b2dc77328 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_pruning_point_utxo_set_and_block.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_pruning_point_utxo_set_and_block.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_relay_blocks.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_relay_blocks.go index 65f2bab8f..21b2a704f 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_relay_blocks.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_relay_blocks.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_transactions.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_transactions.go index c9589abe9..2516e3831 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_transactions.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_request_transactions.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_transaction.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_transaction.go index 8ba0e0342..91c99fad8 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_transaction.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_transaction.go @@ -3,7 +3,7 @@ package protowire import ( "math" - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_transaction_not_found.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_transaction_not_found.go index e742b148d..5d816d13d 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_transaction_not_found.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_transaction_not_found.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_trusted_data.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_trusted_data.go index 0a04f5fea..2d18ff23e 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_trusted_data.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_trusted_data.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_unexpected_pruning_point.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_unexpected_pruning_point.go index cc81304a9..0e0c7cfad 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_unexpected_pruning_point.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_unexpected_pruning_point.go @@ -1,6 +1,6 @@ package protowire -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" func (x *KaspadMessage_UnexpectedPruningPoint) toAppMessage() (appmessage.Message, error) { return &appmessage.MsgUnexpectedPruningPoint{}, nil diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_verack.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_verack.go index 2dcba978e..daf3f0a4f 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_verack.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_verack.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_version.go b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_version.go index db951906d..042662dfe 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_version.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/p2p_version.go @@ -1,9 +1,9 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/id" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/id" + "github.com/c4ei/yunseokyeol/util/mstime" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc.proto b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc.proto index 1ce2971de..c4593747d 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc.proto +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc.proto @@ -10,7 +10,7 @@ syntax = "proto3"; package protowire; -option go_package = "github.com/c4ei/YunSeokYeol/protowire"; +option go_package = "github.com/c4ei/yunseokyeol/protowire"; // RPCError represents a generic non-internal error. // diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_add_peer.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_add_peer.go index 2929667d6..7f257a1f8 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_add_peer.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_add_peer.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_ban.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_ban.go index 16ccbb797..f6cfef8f6 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_ban.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_ban.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_error.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_error.go index 338bcc230..c7629beaf 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_error.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_error.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_estimate_network_hashes_per_second.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_estimate_network_hashes_per_second.go index b386a6979..a7f6783b7 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_estimate_network_hashes_per_second.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_estimate_network_hashes_per_second.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_balance_by_address.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_balance_by_address.go index e4d676b8e..3c9ed2cb9 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_balance_by_address.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_balance_by_address.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_balances_by_addresses.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_balances_by_addresses.go index a53bb8849..e978b755b 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_balances_by_addresses.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_balances_by_addresses.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_block.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_block.go index 53f9cb35b..2bad67d1e 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_block.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_block.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_block_count.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_block_count.go index 8fb26d338..cec9a04c1 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_block_count.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_block_count.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_block_dag_info.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_block_dag_info.go index c45e4a333..5f34fefbf 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_block_dag_info.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_block_dag_info.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_block_template.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_block_template.go index 0c2166624..acf7a3b82 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_block_template.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_block_template.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_blocks.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_blocks.go index 647446432..c46408d85 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_blocks.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_blocks.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_connected_peer_info.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_connected_peer_info.go index bb1638b47..fd0cfd36b 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_connected_peer_info.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_connected_peer_info.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_current_network.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_current_network.go index 779abe084..e97df6a7c 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_current_network.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_current_network.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_headers.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_headers.go index 3b4b4cc83..e3d5d1b97 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_headers.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_headers.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_info.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_info.go index a438d2dab..9bfb4db4f 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_info.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_info.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_mempool_entries.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_mempool_entries.go index b2f8010b8..95b09cda0 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_mempool_entries.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_mempool_entries.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_mempool_entries_by_addresses.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_mempool_entries_by_addresses.go index f2d83d1c2..5539d9ca2 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_mempool_entries_by_addresses.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_mempool_entries_by_addresses.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_mempool_entry.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_mempool_entry.go index ba5992401..877d47af4 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_mempool_entry.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_mempool_entry.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_peer_addresses.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_peer_addresses.go index 6f2d75adf..bbc37b716 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_peer_addresses.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_peer_addresses.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_selected_tip_hash.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_selected_tip_hash.go index 0952d778a..d27563edd 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_selected_tip_hash.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_selected_tip_hash.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_subnetwork.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_subnetwork.go index 957be272c..3a1bf3fb6 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_subnetwork.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_subnetwork.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_supply.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_supply.go index cd6628215..d2e60d6fd 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_supply.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_supply.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_utxos_by_addresses.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_utxos_by_addresses.go index 32a7aeaec..ed272a1d8 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_utxos_by_addresses.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_utxos_by_addresses.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_virtual_selected_parent_blue_score.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_virtual_selected_parent_blue_score.go index 2b1879e23..cc5d4e4b4 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_virtual_selected_parent_blue_score.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_virtual_selected_parent_blue_score.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_virtual_selected_parent_chain_from_block.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_virtual_selected_parent_chain_from_block.go index 24083077e..3a3b6bf67 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_virtual_selected_parent_chain_from_block.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_get_virtual_selected_parent_chain_from_block.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_block_added.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_block_added.go index 6015975e6..4f85a694e 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_block_added.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_block_added.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_finality_conflicts.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_finality_conflicts.go index 4b0b4f1b7..c48b49fdb 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_finality_conflicts.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_finality_conflicts.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_new_block_template.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_new_block_template.go index 37a39abc5..6fb965251 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_new_block_template.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_new_block_template.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_pruning_point_utxo_set_override.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_pruning_point_utxo_set_override.go index 9637acc04..c92124bd4 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_pruning_point_utxo_set_override.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_pruning_point_utxo_set_override.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_utxos_changed.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_utxos_changed.go index f69012cad..93db3b4e2 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_utxos_changed.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_utxos_changed.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_virtual_daa_score_changed.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_virtual_daa_score_changed.go index 49a01c479..735f6d1f5 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_virtual_daa_score_changed.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_virtual_daa_score_changed.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_virtual_selected_parent_blue_score_changed.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_virtual_selected_parent_blue_score_changed.go index b186d7d20..1b0ab3c64 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_virtual_selected_parent_blue_score_changed.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_virtual_selected_parent_blue_score_changed.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_virtual_selected_parent_chain_changed.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_virtual_selected_parent_chain_changed.go index a28566152..58b146956 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_virtual_selected_parent_chain_changed.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_notify_virtual_selected_parent_chain_changed.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_resolve_finality_conflict.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_resolve_finality_conflict.go index 5c4b175ce..28e0d6c7d 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_resolve_finality_conflict.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_resolve_finality_conflict.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_shut_down.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_shut_down.go index 6d9f288c5..2821c7df2 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_shut_down.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_shut_down.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_stop_notifying_utxos_changed.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_stop_notifying_utxos_changed.go index eb6d6c474..60498dbc4 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_stop_notifying_utxos_changed.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_stop_notifying_utxos_changed.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_submit_block.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_submit_block.go index 32e9ff7a4..5d7efd6dd 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_submit_block.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_submit_block.go @@ -3,7 +3,7 @@ package protowire import ( "math" - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_submit_transaction.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_submit_transaction.go index da7b59057..ad0702d80 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_submit_transaction.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_submit_transaction.go @@ -3,7 +3,7 @@ package protowire import ( "math" - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_unban.go b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_unban.go index b5bb6bb3a..379cebf84 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_unban.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/rpc_unban.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/protowire/wire.go b/infrastructure/network/netadapter/server/grpcserver/protowire/wire.go index 6a20462f6..85f1ca333 100644 --- a/infrastructure/network/netadapter/server/grpcserver/protowire/wire.go +++ b/infrastructure/network/netadapter/server/grpcserver/protowire/wire.go @@ -1,7 +1,7 @@ package protowire import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/server/grpcserver/rpcserver.go b/infrastructure/network/netadapter/server/grpcserver/rpcserver.go index ec56bec12..5ff4cfb8f 100644 --- a/infrastructure/network/netadapter/server/grpcserver/rpcserver.go +++ b/infrastructure/network/netadapter/server/grpcserver/rpcserver.go @@ -1,9 +1,9 @@ package grpcserver import ( - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/server" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/server/grpcserver/protowire" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/server" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/server/grpcserver/protowire" + "github.com/c4ei/yunseokyeol/util/panics" ) type rpcServer struct { diff --git a/infrastructure/network/netadapter/server/server.go b/infrastructure/network/netadapter/server/server.go index a325a724e..0c11f7247 100644 --- a/infrastructure/network/netadapter/server/server.go +++ b/infrastructure/network/netadapter/server/server.go @@ -4,7 +4,7 @@ import ( "fmt" "net" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // OnConnectedHandler is a function that is to be called diff --git a/infrastructure/network/netadapter/standalone/log.go b/infrastructure/network/netadapter/standalone/log.go index acd25b842..aa3f5599d 100644 --- a/infrastructure/network/netadapter/standalone/log.go +++ b/infrastructure/network/netadapter/standalone/log.go @@ -1,8 +1,8 @@ package standalone import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var log = logger.RegisterSubSystem("NTAR") diff --git a/infrastructure/network/netadapter/standalone/minimal_net_adapter.go b/infrastructure/network/netadapter/standalone/minimal_net_adapter.go index 57cd6fef2..8b3a4894c 100644 --- a/infrastructure/network/netadapter/standalone/minimal_net_adapter.go +++ b/infrastructure/network/netadapter/standalone/minimal_net_adapter.go @@ -3,16 +3,16 @@ package standalone import ( "sync" - "github.com/c4ei/YunSeokYeol/app/protocol/common" - "github.com/c4ei/YunSeokYeol/util/mstime" + "github.com/c4ei/yunseokyeol/app/protocol/common" + "github.com/c4ei/yunseokyeol/util/mstime" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/id" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/id" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter" "github.com/pkg/errors" ) diff --git a/infrastructure/network/netadapter/standalone/routes.go b/infrastructure/network/netadapter/standalone/routes.go index c2e9a5c2e..dcab4fe69 100644 --- a/infrastructure/network/netadapter/standalone/routes.go +++ b/infrastructure/network/netadapter/standalone/routes.go @@ -3,12 +3,12 @@ package standalone import ( "time" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter" "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) // Routes holds the incoming and outgoing routes of a connection created by MinimalNetAdapter diff --git a/infrastructure/network/rpcclient/grpcclient/grpcclient.go b/infrastructure/network/rpcclient/grpcclient/grpcclient.go index d52022dda..344c3dc8a 100644 --- a/infrastructure/network/rpcclient/grpcclient/grpcclient.go +++ b/infrastructure/network/rpcclient/grpcclient/grpcclient.go @@ -5,10 +5,10 @@ import ( "io" "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/server/grpcserver" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/server/grpcserver/protowire" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/server/grpcserver" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/server/grpcserver/protowire" "github.com/pkg/errors" "google.golang.org/grpc" "google.golang.org/grpc/encoding/gzip" diff --git a/infrastructure/network/rpcclient/grpcclient/log.go b/infrastructure/network/rpcclient/grpcclient/log.go index 5b8ec40c7..ec320b89f 100644 --- a/infrastructure/network/rpcclient/grpcclient/log.go +++ b/infrastructure/network/rpcclient/grpcclient/log.go @@ -1,8 +1,8 @@ package grpcclient import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var log = logger.RegisterSubSystem("RPCC") diff --git a/infrastructure/network/rpcclient/grpcclient/post.go b/infrastructure/network/rpcclient/grpcclient/post.go index e70c60835..cc5e678d7 100644 --- a/infrastructure/network/rpcclient/grpcclient/post.go +++ b/infrastructure/network/rpcclient/grpcclient/post.go @@ -1,8 +1,8 @@ package grpcclient import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/server/grpcserver/protowire" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/server/grpcserver/protowire" "github.com/pkg/errors" "google.golang.org/protobuf/encoding/protojson" ) diff --git a/infrastructure/network/rpcclient/log.go b/infrastructure/network/rpcclient/log.go index 78b307aa1..ca644bcee 100644 --- a/infrastructure/network/rpcclient/log.go +++ b/infrastructure/network/rpcclient/log.go @@ -1,8 +1,8 @@ package rpcclient import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var log = logger.RegisterSubSystem("RPCC") diff --git a/infrastructure/network/rpcclient/rpc_ban.go b/infrastructure/network/rpcclient/rpc_ban.go index fbf4dd881..0fdbb7370 100644 --- a/infrastructure/network/rpcclient/rpc_ban.go +++ b/infrastructure/network/rpcclient/rpc_ban.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // Ban sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) Ban(ip string) (*appmessage.BanResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_connect_to_peer.go b/infrastructure/network/rpcclient/rpc_connect_to_peer.go index d26db08c9..7ee6bf705 100644 --- a/infrastructure/network/rpcclient/rpc_connect_to_peer.go +++ b/infrastructure/network/rpcclient/rpc_connect_to_peer.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // AddPeer sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) AddPeer(address string, isPermanent bool) error { diff --git a/infrastructure/network/rpcclient/rpc_estimate_network_hashes_per_second.go b/infrastructure/network/rpcclient/rpc_estimate_network_hashes_per_second.go index 14a0c3901..1290f50e5 100644 --- a/infrastructure/network/rpcclient/rpc_estimate_network_hashes_per_second.go +++ b/infrastructure/network/rpcclient/rpc_estimate_network_hashes_per_second.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // EstimateNetworkHashesPerSecond sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) EstimateNetworkHashesPerSecond(startHash string, windowSize uint32) (*appmessage.EstimateNetworkHashesPerSecondResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_get_balance_by_address.go b/infrastructure/network/rpcclient/rpc_get_balance_by_address.go index d7c221bbe..8eeb2ddba 100644 --- a/infrastructure/network/rpcclient/rpc_get_balance_by_address.go +++ b/infrastructure/network/rpcclient/rpc_get_balance_by_address.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetBalanceByAddress sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetBalanceByAddress(address string) (*appmessage.GetBalanceByAddressResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_get_balances_by_addresses.go b/infrastructure/network/rpcclient/rpc_get_balances_by_addresses.go index 10baa0136..cafaddeeb 100644 --- a/infrastructure/network/rpcclient/rpc_get_balances_by_addresses.go +++ b/infrastructure/network/rpcclient/rpc_get_balances_by_addresses.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetBalancesByAddresses sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetBalancesByAddresses(addresses []string) (*appmessage.GetBalancesByAddressesResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_get_block.go b/infrastructure/network/rpcclient/rpc_get_block.go index 83dd27b24..fe9ace0c5 100644 --- a/infrastructure/network/rpcclient/rpc_get_block.go +++ b/infrastructure/network/rpcclient/rpc_get_block.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetBlock sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetBlock(hash string, includeTransactions bool) ( diff --git a/infrastructure/network/rpcclient/rpc_get_block_count.go b/infrastructure/network/rpcclient/rpc_get_block_count.go index 6f522f303..9e0234614 100644 --- a/infrastructure/network/rpcclient/rpc_get_block_count.go +++ b/infrastructure/network/rpcclient/rpc_get_block_count.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetBlockCount sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetBlockCount() (*appmessage.GetBlockCountResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_get_block_dag_info.go b/infrastructure/network/rpcclient/rpc_get_block_dag_info.go index 814144ba5..3151e7a50 100644 --- a/infrastructure/network/rpcclient/rpc_get_block_dag_info.go +++ b/infrastructure/network/rpcclient/rpc_get_block_dag_info.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetBlockDAGInfo sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetBlockDAGInfo() (*appmessage.GetBlockDAGInfoResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_get_block_template.go b/infrastructure/network/rpcclient/rpc_get_block_template.go index 91e89415b..6c42f2272 100644 --- a/infrastructure/network/rpcclient/rpc_get_block_template.go +++ b/infrastructure/network/rpcclient/rpc_get_block_template.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetBlockTemplate sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetBlockTemplate(miningAddress, extraData string) (*appmessage.GetBlockTemplateResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_get_blocks.go b/infrastructure/network/rpcclient/rpc_get_blocks.go index de48cd999..7f18b3419 100644 --- a/infrastructure/network/rpcclient/rpc_get_blocks.go +++ b/infrastructure/network/rpcclient/rpc_get_blocks.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetBlocks sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetBlocks(lowHash string, includeBlocks bool, diff --git a/infrastructure/network/rpcclient/rpc_get_chain_from_block.go b/infrastructure/network/rpcclient/rpc_get_chain_from_block.go index f4bb2e6d6..2d5aef17b 100644 --- a/infrastructure/network/rpcclient/rpc_get_chain_from_block.go +++ b/infrastructure/network/rpcclient/rpc_get_chain_from_block.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetVirtualSelectedParentChainFromBlock sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetVirtualSelectedParentChainFromBlock(startHash string, includeAcceptedTransactionIDs bool) ( diff --git a/infrastructure/network/rpcclient/rpc_get_coin_supply.go b/infrastructure/network/rpcclient/rpc_get_coin_supply.go index b25a092f8..1d1651fd3 100644 --- a/infrastructure/network/rpcclient/rpc_get_coin_supply.go +++ b/infrastructure/network/rpcclient/rpc_get_coin_supply.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetCoinSupply sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetCoinSupply() (*appmessage.GetCoinSupplyResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_get_connected_peer_info.go b/infrastructure/network/rpcclient/rpc_get_connected_peer_info.go index 8b505bc88..9972f69a2 100644 --- a/infrastructure/network/rpcclient/rpc_get_connected_peer_info.go +++ b/infrastructure/network/rpcclient/rpc_get_connected_peer_info.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetConnectedPeerInfo sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetConnectedPeerInfo() (*appmessage.GetConnectedPeerInfoResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_get_headers.go b/infrastructure/network/rpcclient/rpc_get_headers.go index af18cfb65..2ce9b17b7 100644 --- a/infrastructure/network/rpcclient/rpc_get_headers.go +++ b/infrastructure/network/rpcclient/rpc_get_headers.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetHeaders sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetHeaders(startHash string, limit uint64, isAscending bool) (*appmessage.GetHeadersResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_get_info.go b/infrastructure/network/rpcclient/rpc_get_info.go index b6aff5680..6d815584f 100644 --- a/infrastructure/network/rpcclient/rpc_get_info.go +++ b/infrastructure/network/rpcclient/rpc_get_info.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetInfo sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetInfo() (*appmessage.GetInfoResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_get_mempool_entries.go b/infrastructure/network/rpcclient/rpc_get_mempool_entries.go index 1c739735e..c92049f02 100644 --- a/infrastructure/network/rpcclient/rpc_get_mempool_entries.go +++ b/infrastructure/network/rpcclient/rpc_get_mempool_entries.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetMempoolEntries sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetMempoolEntries(includeOrphanPool bool, filterTransactionPool bool) (*appmessage.GetMempoolEntriesResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_get_mempool_entries_by_address.go b/infrastructure/network/rpcclient/rpc_get_mempool_entries_by_address.go index 369a03547..1b2978de2 100644 --- a/infrastructure/network/rpcclient/rpc_get_mempool_entries_by_address.go +++ b/infrastructure/network/rpcclient/rpc_get_mempool_entries_by_address.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetMempoolEntriesByAddresses sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetMempoolEntriesByAddresses(addresses []string, includeOrphanPool bool, filterTransactionPool bool) (*appmessage.GetMempoolEntriesByAddressesResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_get_mempool_entry.go b/infrastructure/network/rpcclient/rpc_get_mempool_entry.go index d5feb1e23..1a85b5b61 100644 --- a/infrastructure/network/rpcclient/rpc_get_mempool_entry.go +++ b/infrastructure/network/rpcclient/rpc_get_mempool_entry.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetMempoolEntry sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetMempoolEntry(txID string, includeOrphanPool bool, filterTransactionPool bool) (*appmessage.GetMempoolEntryResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_get_peer_addresses.go b/infrastructure/network/rpcclient/rpc_get_peer_addresses.go index c53a3c766..91b30bc5d 100644 --- a/infrastructure/network/rpcclient/rpc_get_peer_addresses.go +++ b/infrastructure/network/rpcclient/rpc_get_peer_addresses.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetPeerAddresses sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetPeerAddresses() (*appmessage.GetPeerAddressesResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_get_selected_tip_hash.go b/infrastructure/network/rpcclient/rpc_get_selected_tip_hash.go index b5ec3b87d..b4bf9c650 100644 --- a/infrastructure/network/rpcclient/rpc_get_selected_tip_hash.go +++ b/infrastructure/network/rpcclient/rpc_get_selected_tip_hash.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetSelectedTipHash sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetSelectedTipHash() (*appmessage.GetSelectedTipHashResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_get_subnetwork.go b/infrastructure/network/rpcclient/rpc_get_subnetwork.go index 29de3f880..257d025e7 100644 --- a/infrastructure/network/rpcclient/rpc_get_subnetwork.go +++ b/infrastructure/network/rpcclient/rpc_get_subnetwork.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetSubnetwork sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetSubnetwork(subnetworkID string) (*appmessage.GetSubnetworkResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_get_utxos_by_addresses.go b/infrastructure/network/rpcclient/rpc_get_utxos_by_addresses.go index fdea9389b..98b8a99bd 100644 --- a/infrastructure/network/rpcclient/rpc_get_utxos_by_addresses.go +++ b/infrastructure/network/rpcclient/rpc_get_utxos_by_addresses.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetUTXOsByAddresses sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetUTXOsByAddresses(addresses []string) (*appmessage.GetUTXOsByAddressesResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_get_virtual_selected_parent_blue_score.go b/infrastructure/network/rpcclient/rpc_get_virtual_selected_parent_blue_score.go index e991c7b12..0139e83b2 100644 --- a/infrastructure/network/rpcclient/rpc_get_virtual_selected_parent_blue_score.go +++ b/infrastructure/network/rpcclient/rpc_get_virtual_selected_parent_blue_score.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // GetVirtualSelectedParentBlueScore sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) GetVirtualSelectedParentBlueScore() (*appmessage.GetVirtualSelectedParentBlueScoreResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_on_block_added.go b/infrastructure/network/rpcclient/rpc_on_block_added.go index 9a06fb632..61fde6cfa 100644 --- a/infrastructure/network/rpcclient/rpc_on_block_added.go +++ b/infrastructure/network/rpcclient/rpc_on_block_added.go @@ -1,8 +1,8 @@ package rpcclient import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - routerpkg "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + routerpkg "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/infrastructure/network/rpcclient/rpc_on_chain_changed.go b/infrastructure/network/rpcclient/rpc_on_chain_changed.go index 5b209858b..3e2016cc5 100644 --- a/infrastructure/network/rpcclient/rpc_on_chain_changed.go +++ b/infrastructure/network/rpcclient/rpc_on_chain_changed.go @@ -1,8 +1,8 @@ package rpcclient import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - routerpkg "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + routerpkg "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/infrastructure/network/rpcclient/rpc_on_finality_conflicts.go b/infrastructure/network/rpcclient/rpc_on_finality_conflicts.go index eb49b0333..3893b3779 100644 --- a/infrastructure/network/rpcclient/rpc_on_finality_conflicts.go +++ b/infrastructure/network/rpcclient/rpc_on_finality_conflicts.go @@ -1,8 +1,8 @@ package rpcclient import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - routerpkg "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + routerpkg "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/infrastructure/network/rpcclient/rpc_on_new_block_template.go b/infrastructure/network/rpcclient/rpc_on_new_block_template.go index 95da6e474..30f60cd82 100644 --- a/infrastructure/network/rpcclient/rpc_on_new_block_template.go +++ b/infrastructure/network/rpcclient/rpc_on_new_block_template.go @@ -1,8 +1,8 @@ package rpcclient import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - routerpkg "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + routerpkg "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/infrastructure/network/rpcclient/rpc_on_pruning_point_utxo_set_override.go b/infrastructure/network/rpcclient/rpc_on_pruning_point_utxo_set_override.go index 4f8682cd7..9e572996b 100644 --- a/infrastructure/network/rpcclient/rpc_on_pruning_point_utxo_set_override.go +++ b/infrastructure/network/rpcclient/rpc_on_pruning_point_utxo_set_override.go @@ -1,8 +1,8 @@ package rpcclient import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - routerpkg "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + routerpkg "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/infrastructure/network/rpcclient/rpc_on_utxos_changed.go b/infrastructure/network/rpcclient/rpc_on_utxos_changed.go index 6b96651cf..9a390b123 100644 --- a/infrastructure/network/rpcclient/rpc_on_utxos_changed.go +++ b/infrastructure/network/rpcclient/rpc_on_utxos_changed.go @@ -1,8 +1,8 @@ package rpcclient import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - routerpkg "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + routerpkg "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/infrastructure/network/rpcclient/rpc_on_virtual_daa_score_changed.go b/infrastructure/network/rpcclient/rpc_on_virtual_daa_score_changed.go index 7fdb4bdd8..96b3f362c 100644 --- a/infrastructure/network/rpcclient/rpc_on_virtual_daa_score_changed.go +++ b/infrastructure/network/rpcclient/rpc_on_virtual_daa_score_changed.go @@ -1,8 +1,8 @@ package rpcclient import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - routerpkg "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + routerpkg "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/infrastructure/network/rpcclient/rpc_on_virtual_selected_parent_blue_score_changed.go b/infrastructure/network/rpcclient/rpc_on_virtual_selected_parent_blue_score_changed.go index d96465db3..983e1cbc2 100644 --- a/infrastructure/network/rpcclient/rpc_on_virtual_selected_parent_blue_score_changed.go +++ b/infrastructure/network/rpcclient/rpc_on_virtual_selected_parent_blue_score_changed.go @@ -1,8 +1,8 @@ package rpcclient import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - routerpkg "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + routerpkg "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" "github.com/pkg/errors" ) diff --git a/infrastructure/network/rpcclient/rpc_resolve_finality_conflict.go b/infrastructure/network/rpcclient/rpc_resolve_finality_conflict.go index 38f09556f..e820100c9 100644 --- a/infrastructure/network/rpcclient/rpc_resolve_finality_conflict.go +++ b/infrastructure/network/rpcclient/rpc_resolve_finality_conflict.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // ResolveFinalityConflict sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) ResolveFinalityConflict(finalityBlockHash string) (*appmessage.ResolveFinalityConflictResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpc_send_raw_transaction.go b/infrastructure/network/rpcclient/rpc_send_raw_transaction.go index aa3690b2a..3fe727f10 100644 --- a/infrastructure/network/rpcclient/rpc_send_raw_transaction.go +++ b/infrastructure/network/rpcclient/rpc_send_raw_transaction.go @@ -1,7 +1,7 @@ package rpcclient import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" ) // SubmitTransaction sends an RPC request respective to the function's name and returns the RPC server's response diff --git a/infrastructure/network/rpcclient/rpc_submit_block.go b/infrastructure/network/rpcclient/rpc_submit_block.go index 7f3030027..5dff704c6 100644 --- a/infrastructure/network/rpcclient/rpc_submit_block.go +++ b/infrastructure/network/rpcclient/rpc_submit_block.go @@ -1,8 +1,8 @@ package rpcclient import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" ) func (c *RPCClient) submitBlock(block *externalapi.DomainBlock, allowNonDAABlocks bool) (appmessage.RejectReason, error) { diff --git a/infrastructure/network/rpcclient/rpc_unban.go b/infrastructure/network/rpcclient/rpc_unban.go index 368d286d6..9c00b8b28 100644 --- a/infrastructure/network/rpcclient/rpc_unban.go +++ b/infrastructure/network/rpcclient/rpc_unban.go @@ -1,6 +1,6 @@ package rpcclient -import "github.com/c4ei/YunSeokYeol/app/appmessage" +import "github.com/c4ei/yunseokyeol/app/appmessage" // Unban sends an RPC request respective to the function's name and returns the RPC server's response func (c *RPCClient) Unban(ip string) (*appmessage.UnbanResponseMessage, error) { diff --git a/infrastructure/network/rpcclient/rpcclient.go b/infrastructure/network/rpcclient/rpcclient.go index 4e71a5782..a0409e5cd 100644 --- a/infrastructure/network/rpcclient/rpcclient.go +++ b/infrastructure/network/rpcclient/rpcclient.go @@ -4,12 +4,12 @@ import ( "sync/atomic" "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - routerpkg "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" - "github.com/c4ei/YunSeokYeol/infrastructure/network/rpcclient/grpcclient" - "github.com/c4ei/YunSeokYeol/util/panics" - "github.com/c4ei/YunSeokYeol/version" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + routerpkg "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/infrastructure/network/rpcclient/grpcclient" + "github.com/c4ei/yunseokyeol/util/panics" + "github.com/c4ei/yunseokyeol/version" "github.com/pkg/errors" ) diff --git a/infrastructure/network/rpcclient/rpcrouter.go b/infrastructure/network/rpcclient/rpcrouter.go index f9fd5834b..c85af867f 100644 --- a/infrastructure/network/rpcclient/rpcrouter.go +++ b/infrastructure/network/rpcclient/rpcrouter.go @@ -1,8 +1,8 @@ package rpcclient import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - routerpkg "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/router" + "github.com/c4ei/yunseokyeol/app/appmessage" + routerpkg "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/router" ) type rpcRouter struct { diff --git a/infrastructure/os/execenv/initialize.go b/infrastructure/os/execenv/initialize.go index 2f5727e51..f08e35d0c 100644 --- a/infrastructure/os/execenv/initialize.go +++ b/infrastructure/os/execenv/initialize.go @@ -5,7 +5,7 @@ import ( "os" "runtime" - "github.com/c4ei/YunSeokYeol/infrastructure/os/limits" + "github.com/c4ei/yunseokyeol/infrastructure/os/limits" ) // Initialize initializes the execution environment required to run kaspad diff --git a/infrastructure/os/signal/log.go b/infrastructure/os/signal/log.go index d62afa480..f91020b3c 100644 --- a/infrastructure/os/signal/log.go +++ b/infrastructure/os/signal/log.go @@ -5,7 +5,7 @@ package signal import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var kasdLog = logger.RegisterSubSystem("KASD") diff --git a/infrastructure/os/winservice/common.go b/infrastructure/os/winservice/common.go index de2a4dbdd..06817ea23 100644 --- a/infrastructure/os/winservice/common.go +++ b/infrastructure/os/winservice/common.go @@ -1,6 +1,6 @@ package winservice -import "github.com/c4ei/YunSeokYeol/infrastructure/config" +import "github.com/c4ei/yunseokyeol/infrastructure/config" // ServiceDescription contains information about a service, needed to administer it type ServiceDescription struct { diff --git a/infrastructure/os/winservice/log.go b/infrastructure/os/winservice/log.go index 56cb4d5d2..425715c65 100644 --- a/infrastructure/os/winservice/log.go +++ b/infrastructure/os/winservice/log.go @@ -5,8 +5,8 @@ package winservice import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var log = logger.RegisterSubSystem("CNFG") diff --git a/infrastructure/os/winservice/service_main_windows.go b/infrastructure/os/winservice/service_main_windows.go index 630f711e5..8a59ef445 100644 --- a/infrastructure/os/winservice/service_main_windows.go +++ b/infrastructure/os/winservice/service_main_windows.go @@ -2,7 +2,7 @@ package winservice import ( "github.com/btcsuite/winsvc/svc" - "github.com/c4ei/YunSeokYeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/config" ) // serviceMain checks whether we're being invoked as a service, and if so uses diff --git a/infrastructure/os/winservice/service_windows.go b/infrastructure/os/winservice/service_windows.go index 931eed9dc..0d8fac609 100644 --- a/infrastructure/os/winservice/service_windows.go +++ b/infrastructure/os/winservice/service_windows.go @@ -9,9 +9,9 @@ import ( "github.com/btcsuite/winsvc/eventlog" "github.com/btcsuite/winsvc/svc" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/os/signal" - "github.com/c4ei/YunSeokYeol/version" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/os/signal" + "github.com/c4ei/yunseokyeol/version" ) // Service houses the main service handler which handles all service diff --git a/main.go b/main.go index b499c3866..f4f54886c 100644 --- a/main.go +++ b/main.go @@ -8,7 +8,7 @@ import ( _ "net/http/pprof" "os" - "github.com/c4ei/YunSeokYeol/app" + "github.com/c4ei/yunseokyeol/app" ) func main() { diff --git a/stability-tests/application-level-garbage/config.go b/stability-tests/application-level-garbage/config.go index 8bcc8269a..1517848fc 100644 --- a/stability-tests/application-level-garbage/config.go +++ b/stability-tests/application-level-garbage/config.go @@ -4,10 +4,10 @@ import ( "os" "path/filepath" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/config" "github.com/jessevdk/go-flags" ) diff --git a/stability-tests/application-level-garbage/log.go b/stability-tests/application-level-garbage/log.go index 51a35118f..a7e1f3f3e 100644 --- a/stability-tests/application-level-garbage/log.go +++ b/stability-tests/application-level-garbage/log.go @@ -1,8 +1,8 @@ package main import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var ( diff --git a/stability-tests/application-level-garbage/main.go b/stability-tests/application-level-garbage/main.go index 8b03b2f38..4ea27999e 100644 --- a/stability-tests/application-level-garbage/main.go +++ b/stability-tests/application-level-garbage/main.go @@ -4,11 +4,11 @@ import ( "fmt" "os" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/standalone" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/util/panics" - "github.com/c4ei/YunSeokYeol/util/profiling" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/standalone" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/util/panics" + "github.com/c4ei/yunseokyeol/util/profiling" ) func main() { diff --git a/stability-tests/application-level-garbage/read.go b/stability-tests/application-level-garbage/read.go index c057d3c4e..9ffbd2d09 100644 --- a/stability-tests/application-level-garbage/read.go +++ b/stability-tests/application-level-garbage/read.go @@ -3,8 +3,8 @@ package main import ( "encoding/json" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/stability-tests/common" "github.com/pkg/errors" ) diff --git a/stability-tests/application-level-garbage/send.go b/stability-tests/application-level-garbage/send.go index ad1ddb73e..c8bf69313 100644 --- a/stability-tests/application-level-garbage/send.go +++ b/stability-tests/application-level-garbage/send.go @@ -1,11 +1,11 @@ package main import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/app/protocol/common" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/standalone" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/protocol/common" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/standalone" "github.com/pkg/errors" ) diff --git a/stability-tests/common/cmd.go b/stability-tests/common/cmd.go index 6dafb7322..c381fc12d 100644 --- a/stability-tests/common/cmd.go +++ b/stability-tests/common/cmd.go @@ -5,8 +5,8 @@ import ( "os/exec" "strings" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/infrastructure/logger" "github.com/pkg/errors" ) diff --git a/stability-tests/common/log-writer.go b/stability-tests/common/log-writer.go index 7abfe04a3..c6907dfcb 100644 --- a/stability-tests/common/log-writer.go +++ b/stability-tests/common/log-writer.go @@ -3,7 +3,7 @@ package common import ( "strings" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) // LogWriter writes to the given log with the given log level and prefix diff --git a/stability-tests/common/log.go b/stability-tests/common/log.go index ceb9e8e34..58e065d84 100644 --- a/stability-tests/common/log.go +++ b/stability-tests/common/log.go @@ -4,10 +4,10 @@ import ( "fmt" "os" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/stability-tests/common/mine" - "github.com/c4ei/YunSeokYeol/stability-tests/common/rpc" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/stability-tests/common/mine" + "github.com/c4ei/yunseokyeol/stability-tests/common/rpc" + "github.com/c4ei/yunseokyeol/util/panics" ) // log is a logger that is initialized with no output filters. This diff --git a/stability-tests/common/mine/db.go b/stability-tests/common/mine/db.go index dfa0f72a1..cbbe5349c 100644 --- a/stability-tests/common/mine/db.go +++ b/stability-tests/common/mine/db.go @@ -3,9 +3,9 @@ package mine import ( "path/filepath" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database/ldb" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/db/database/ldb" ) const leveldbCacheSizeMiB = 256 diff --git a/stability-tests/common/mine/log.go b/stability-tests/common/mine/log.go index 2288860cc..f77b08c4b 100644 --- a/stability-tests/common/mine/log.go +++ b/stability-tests/common/mine/log.go @@ -1,8 +1,8 @@ package mine import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) // log is a logger that is initialized with no output filters. This diff --git a/stability-tests/common/mine/mine.go b/stability-tests/common/mine/mine.go index 0c2f33adf..e1064f430 100644 --- a/stability-tests/common/mine/mine.go +++ b/stability-tests/common/mine/mine.go @@ -6,13 +6,13 @@ import ( "strings" "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/mining" - "github.com/c4ei/YunSeokYeol/stability-tests/common/rpc" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/mining" + "github.com/c4ei/yunseokyeol/stability-tests/common/rpc" "github.com/pkg/errors" ) diff --git a/stability-tests/common/paths.go b/stability-tests/common/paths.go index 8264192e5..20d13b886 100644 --- a/stability-tests/common/paths.go +++ b/stability-tests/common/paths.go @@ -1,6 +1,6 @@ package common -import "github.com/c4ei/YunSeokYeol/util" +import "github.com/c4ei/yunseokyeol/util" // DefaultAppDir is the default app directory to be used by all tests var DefaultAppDir = util.AppDir("stability-tests", false) diff --git a/stability-tests/common/rpc/log.go b/stability-tests/common/rpc/log.go index 62725b8e1..164c2c30a 100644 --- a/stability-tests/common/rpc/log.go +++ b/stability-tests/common/rpc/log.go @@ -1,8 +1,8 @@ package rpc import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) // log is a logger that is initialized with no output filters. This diff --git a/stability-tests/common/rpc/rpc.go b/stability-tests/common/rpc/rpc.go index daca1b670..fc0e69c02 100644 --- a/stability-tests/common/rpc/rpc.go +++ b/stability-tests/common/rpc/rpc.go @@ -3,10 +3,10 @@ package rpc import ( "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/infrastructure/network/rpcclient" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/infrastructure/network/rpcclient" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/dagconfig" ) const defaultRPCServer = "localhost" diff --git a/stability-tests/common/run-kaspad.go b/stability-tests/common/run-kaspad.go index 5a4892fc0..cccbe3ee9 100644 --- a/stability-tests/common/run-kaspad.go +++ b/stability-tests/common/run-kaspad.go @@ -7,7 +7,7 @@ import ( "syscall" "testing" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/dagconfig" ) // RunKaspadForTesting runs kaspad for testing purposes diff --git a/stability-tests/daa/daa_test.go b/stability-tests/daa/daa_test.go index 872ed51e4..596f141d3 100644 --- a/stability-tests/daa/daa_test.go +++ b/stability-tests/daa/daa_test.go @@ -7,12 +7,12 @@ import ( "testing" "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/pow" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/infrastructure/network/rpcclient" - "github.com/c4ei/YunSeokYeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/pow" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/infrastructure/network/rpcclient" + "github.com/c4ei/yunseokyeol/stability-tests/common" ) const rpcAddress = "localhost:9000" diff --git a/stability-tests/docker/Dockerfile b/stability-tests/docker/Dockerfile index af793462e..f6f932eaf 100644 --- a/stability-tests/docker/Dockerfile +++ b/stability-tests/docker/Dockerfile @@ -23,7 +23,7 @@ COPY --from=kaspad /app/ /app/ COPY --from=kaspaminer /app/ /app/ ENV PATH="/app:${PATH}" -WORKDIR /go/src/github.com/c4ei/YunSeokYeol/stability-tests +WORKDIR /go/src/github.com/c4ei/yunseokyeol/stability-tests RUN go install ./... diff --git a/stability-tests/infra-level-garbage/config.go b/stability-tests/infra-level-garbage/config.go index bf275d386..d29d8c8e7 100644 --- a/stability-tests/infra-level-garbage/config.go +++ b/stability-tests/infra-level-garbage/config.go @@ -4,9 +4,9 @@ import ( "os" "path/filepath" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/stability-tests/common" "github.com/jessevdk/go-flags" ) diff --git a/stability-tests/infra-level-garbage/log.go b/stability-tests/infra-level-garbage/log.go index 6c2094b9e..299a7dbf4 100644 --- a/stability-tests/infra-level-garbage/log.go +++ b/stability-tests/infra-level-garbage/log.go @@ -1,8 +1,8 @@ package main import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var ( diff --git a/stability-tests/infra-level-garbage/main.go b/stability-tests/infra-level-garbage/main.go index af022b868..9e6cdb7eb 100644 --- a/stability-tests/infra-level-garbage/main.go +++ b/stability-tests/infra-level-garbage/main.go @@ -5,8 +5,8 @@ import ( "os" "time" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/util/profiling" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/util/profiling" ) const timeout = 5 * time.Second diff --git a/stability-tests/infra-level-garbage/send.go b/stability-tests/infra-level-garbage/send.go index 9a41c6623..9ca8e869f 100644 --- a/stability-tests/infra-level-garbage/send.go +++ b/stability-tests/infra-level-garbage/send.go @@ -5,7 +5,7 @@ import ( "net" "time" - "github.com/c4ei/YunSeokYeol/app/protocol/common" + "github.com/c4ei/yunseokyeol/app/protocol/common" "github.com/pkg/errors" ) diff --git a/stability-tests/kaspadsanity/commandloop.go b/stability-tests/kaspadsanity/commandloop.go index 38d8f858e..b62e821e9 100644 --- a/stability-tests/kaspadsanity/commandloop.go +++ b/stability-tests/kaspadsanity/commandloop.go @@ -7,8 +7,8 @@ import ( "strings" "time" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/stability-tests/common" "github.com/pkg/errors" ) diff --git a/stability-tests/kaspadsanity/config.go b/stability-tests/kaspadsanity/config.go index fc36be91e..1f2a04171 100644 --- a/stability-tests/kaspadsanity/config.go +++ b/stability-tests/kaspadsanity/config.go @@ -3,7 +3,7 @@ package main import ( "path/filepath" - "github.com/c4ei/YunSeokYeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/stability-tests/common" "github.com/jessevdk/go-flags" ) diff --git a/stability-tests/kaspadsanity/log.go b/stability-tests/kaspadsanity/log.go index b7a27bcfb..9fac8c1fe 100644 --- a/stability-tests/kaspadsanity/log.go +++ b/stability-tests/kaspadsanity/log.go @@ -4,9 +4,9 @@ import ( "fmt" "os" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/util/panics" ) var ( diff --git a/stability-tests/kaspadsanity/main.go b/stability-tests/kaspadsanity/main.go index 746b978bc..909f32019 100644 --- a/stability-tests/kaspadsanity/main.go +++ b/stability-tests/kaspadsanity/main.go @@ -4,10 +4,10 @@ import ( "fmt" "os" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/util/profiling" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/util/profiling" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/util/panics" "github.com/pkg/errors" ) diff --git a/stability-tests/many-tips/config.go b/stability-tests/many-tips/config.go index bd6fb2fe7..f316860f9 100644 --- a/stability-tests/many-tips/config.go +++ b/stability-tests/many-tips/config.go @@ -3,8 +3,8 @@ package main import ( "path/filepath" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/stability-tests/common" "github.com/jessevdk/go-flags" ) diff --git a/stability-tests/many-tips/log.go b/stability-tests/many-tips/log.go index 63cc3da8a..41959baf5 100644 --- a/stability-tests/many-tips/log.go +++ b/stability-tests/many-tips/log.go @@ -4,9 +4,9 @@ import ( "fmt" "os" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/util/panics" ) var ( diff --git a/stability-tests/many-tips/main.go b/stability-tests/many-tips/main.go index 8d554f7d5..6ebcf550d 100644 --- a/stability-tests/many-tips/main.go +++ b/stability-tests/many-tips/main.go @@ -11,15 +11,15 @@ import ( "syscall" "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/mining" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/mining" + "github.com/c4ei/yunseokyeol/util" "github.com/kaspanet/go-secp256k1" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/stability-tests/common/rpc" - "github.com/c4ei/YunSeokYeol/util/panics" - "github.com/c4ei/YunSeokYeol/util/profiling" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/stability-tests/common/rpc" + "github.com/c4ei/yunseokyeol/util/panics" + "github.com/c4ei/yunseokyeol/util/profiling" "github.com/pkg/errors" ) diff --git a/stability-tests/mempool-limits/config.go b/stability-tests/mempool-limits/config.go index f9e34f9ff..f8a0eabce 100644 --- a/stability-tests/mempool-limits/config.go +++ b/stability-tests/mempool-limits/config.go @@ -3,7 +3,7 @@ package mempoollimits import ( "path/filepath" - "github.com/c4ei/YunSeokYeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/stability-tests/common" "github.com/jessevdk/go-flags" ) diff --git a/stability-tests/mempool-limits/log.go b/stability-tests/mempool-limits/log.go index dadfc41d0..73915836e 100644 --- a/stability-tests/mempool-limits/log.go +++ b/stability-tests/mempool-limits/log.go @@ -4,9 +4,9 @@ import ( "fmt" "os" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/util/panics" ) var ( diff --git a/stability-tests/mempool-limits/main_test.go b/stability-tests/mempool-limits/main_test.go index a4e064720..3187c1916 100644 --- a/stability-tests/mempool-limits/main_test.go +++ b/stability-tests/mempool-limits/main_test.go @@ -4,10 +4,10 @@ import ( "os" "testing" - "github.com/c4ei/YunSeokYeol/infrastructure/network/rpcclient" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/util/panics" - "github.com/c4ei/YunSeokYeol/util/profiling" + "github.com/c4ei/yunseokyeol/infrastructure/network/rpcclient" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/util/panics" + "github.com/c4ei/yunseokyeol/util/profiling" ) const ( diff --git a/stability-tests/mempool-limits/transactions.go b/stability-tests/mempool-limits/transactions.go index 9578b5d3b..b033e5016 100644 --- a/stability-tests/mempool-limits/transactions.go +++ b/stability-tests/mempool-limits/transactions.go @@ -5,18 +5,18 @@ import ( "strings" "testing" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/subnetworks" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - utxopkg "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/infrastructure/network/rpcclient" - "github.com/c4ei/YunSeokYeol/stability-tests/common/mine" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/subnetworks" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + utxopkg "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/infrastructure/network/rpcclient" + "github.com/c4ei/yunseokyeol/stability-tests/common/mine" + "github.com/c4ei/yunseokyeol/util" "github.com/kaspanet/go-secp256k1" ) diff --git a/stability-tests/minejson/config.go b/stability-tests/minejson/config.go index edc9cee67..ba1faecef 100644 --- a/stability-tests/minejson/config.go +++ b/stability-tests/minejson/config.go @@ -3,10 +3,10 @@ package main import ( "path/filepath" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/stability-tests/common/rpc" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/stability-tests/common/rpc" "github.com/jessevdk/go-flags" ) diff --git a/stability-tests/minejson/log.go b/stability-tests/minejson/log.go index 55fd2e9d1..b48b029d8 100644 --- a/stability-tests/minejson/log.go +++ b/stability-tests/minejson/log.go @@ -1,8 +1,8 @@ package main import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var ( diff --git a/stability-tests/minejson/main.go b/stability-tests/minejson/main.go index 1bf4e9382..4e46f1c37 100644 --- a/stability-tests/minejson/main.go +++ b/stability-tests/minejson/main.go @@ -1,12 +1,12 @@ package main import ( - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/stability-tests/common/mine" - "github.com/c4ei/YunSeokYeol/stability-tests/common/rpc" - "github.com/c4ei/YunSeokYeol/util/panics" - "github.com/c4ei/YunSeokYeol/util/profiling" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/stability-tests/common/mine" + "github.com/c4ei/yunseokyeol/stability-tests/common/rpc" + "github.com/c4ei/yunseokyeol/util/panics" + "github.com/c4ei/yunseokyeol/util/profiling" "github.com/pkg/errors" ) diff --git a/stability-tests/netsync/chain_generator/config.go b/stability-tests/netsync/chain_generator/config.go index a2b2cf039..346e8d514 100644 --- a/stability-tests/netsync/chain_generator/config.go +++ b/stability-tests/netsync/chain_generator/config.go @@ -3,7 +3,7 @@ package main import ( "path/filepath" - "github.com/c4ei/YunSeokYeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/stability-tests/common" "github.com/jessevdk/go-flags" ) diff --git a/stability-tests/netsync/chain_generator/log.go b/stability-tests/netsync/chain_generator/log.go index a93afa41c..dd31032fd 100644 --- a/stability-tests/netsync/chain_generator/log.go +++ b/stability-tests/netsync/chain_generator/log.go @@ -4,9 +4,9 @@ import ( "fmt" "os" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/util/panics" ) var ( diff --git a/stability-tests/netsync/chain_generator/main.go b/stability-tests/netsync/chain_generator/main.go index fec3855b7..f1239d68d 100644 --- a/stability-tests/netsync/chain_generator/main.go +++ b/stability-tests/netsync/chain_generator/main.go @@ -5,8 +5,8 @@ import ( "os" "strconv" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/stability-tests/common/mine" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/stability-tests/common/mine" "github.com/pkg/errors" ) diff --git a/stability-tests/netsync/check_resolve_virtual.go b/stability-tests/netsync/check_resolve_virtual.go index afd637787..651531a36 100644 --- a/stability-tests/netsync/check_resolve_virtual.go +++ b/stability-tests/netsync/check_resolve_virtual.go @@ -4,8 +4,8 @@ import ( "fmt" "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/stability-tests/common/rpc" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/stability-tests/common/rpc" "github.com/pkg/errors" ) diff --git a/stability-tests/netsync/check_sync_rate.go b/stability-tests/netsync/check_sync_rate.go index 6f160ba5d..40e935a16 100644 --- a/stability-tests/netsync/check_sync_rate.go +++ b/stability-tests/netsync/check_sync_rate.go @@ -3,7 +3,7 @@ package main import ( "time" - "github.com/c4ei/YunSeokYeol/stability-tests/common/rpc" + "github.com/c4ei/yunseokyeol/stability-tests/common/rpc" "github.com/pkg/errors" ) diff --git a/stability-tests/netsync/config.go b/stability-tests/netsync/config.go index 5fe2dc903..b196e4787 100644 --- a/stability-tests/netsync/config.go +++ b/stability-tests/netsync/config.go @@ -3,8 +3,8 @@ package main import ( "path/filepath" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/stability-tests/common" "github.com/jessevdk/go-flags" ) diff --git a/stability-tests/netsync/fast-pruning-ibd-test/generate_test.go b/stability-tests/netsync/fast-pruning-ibd-test/generate_test.go index aa1ae3a2a..012de07ca 100644 --- a/stability-tests/netsync/fast-pruning-ibd-test/generate_test.go +++ b/stability-tests/netsync/fast-pruning-ibd-test/generate_test.go @@ -7,10 +7,10 @@ import ( "testing" "time" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/dagconfig" ) // TestGenerateFastPruningIBDTest generates the json needed for dag-for-fast-pruning-ibd-test.json.gz diff --git a/stability-tests/netsync/log.go b/stability-tests/netsync/log.go index 1eb6309bf..996094cb6 100644 --- a/stability-tests/netsync/log.go +++ b/stability-tests/netsync/log.go @@ -4,9 +4,9 @@ import ( "fmt" "os" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/util/panics" ) var ( diff --git a/stability-tests/netsync/main.go b/stability-tests/netsync/main.go index 95e70bdaa..f693e6ef7 100644 --- a/stability-tests/netsync/main.go +++ b/stability-tests/netsync/main.go @@ -3,9 +3,9 @@ package main import ( "sync/atomic" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/util/panics" - "github.com/c4ei/YunSeokYeol/util/profiling" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/util/panics" + "github.com/c4ei/yunseokyeol/util/profiling" "github.com/pkg/errors" ) diff --git a/stability-tests/netsync/node.go b/stability-tests/netsync/node.go index 5e941dc81..2be3dcaab 100644 --- a/stability-tests/netsync/node.go +++ b/stability-tests/netsync/node.go @@ -8,14 +8,14 @@ import ( "syscall" "time" - "github.com/c4ei/YunSeokYeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/stability-tests/common/mine" - "github.com/c4ei/YunSeokYeol/stability-tests/common/rpc" - "github.com/c4ei/YunSeokYeol/util" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/stability-tests/common/mine" + "github.com/c4ei/yunseokyeol/stability-tests/common/rpc" + "github.com/c4ei/yunseokyeol/util" + "github.com/c4ei/yunseokyeol/util/panics" "github.com/pkg/errors" ) diff --git a/stability-tests/orphans/check_top_is_tip.go b/stability-tests/orphans/check_top_is_tip.go index 437b67919..325fb7533 100644 --- a/stability-tests/orphans/check_top_is_tip.go +++ b/stability-tests/orphans/check_top_is_tip.go @@ -1,9 +1,9 @@ package main import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/stability-tests/common/rpc" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/stability-tests/common/rpc" "github.com/pkg/errors" ) diff --git a/stability-tests/orphans/config.go b/stability-tests/orphans/config.go index 7bb4e08fb..b9b7f9285 100644 --- a/stability-tests/orphans/config.go +++ b/stability-tests/orphans/config.go @@ -4,10 +4,10 @@ import ( "os" "path/filepath" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/stability-tests/common/rpc" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/stability-tests/common/rpc" "github.com/jessevdk/go-flags" ) diff --git a/stability-tests/orphans/connect_to_node.go b/stability-tests/orphans/connect_to_node.go index d870dc1bc..0f73d4910 100644 --- a/stability-tests/orphans/connect_to_node.go +++ b/stability-tests/orphans/connect_to_node.go @@ -4,8 +4,8 @@ import ( "fmt" "os" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/standalone" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/standalone" ) func connectToNode() *standalone.Routes { diff --git a/stability-tests/orphans/log.go b/stability-tests/orphans/log.go index c114cf0d7..d07a0585a 100644 --- a/stability-tests/orphans/log.go +++ b/stability-tests/orphans/log.go @@ -1,8 +1,8 @@ package main import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var ( diff --git a/stability-tests/orphans/main.go b/stability-tests/orphans/main.go index ba00a78f4..5b7c143da 100644 --- a/stability-tests/orphans/main.go +++ b/stability-tests/orphans/main.go @@ -7,9 +7,9 @@ import ( "github.com/pkg/errors" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/stability-tests/common/rpc" - "github.com/c4ei/YunSeokYeol/util/profiling" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/stability-tests/common/rpc" + "github.com/c4ei/yunseokyeol/util/profiling" ) var timeout = 30 * time.Second diff --git a/stability-tests/orphans/prepare_blocks.go b/stability-tests/orphans/prepare_blocks.go index 7d506b790..9f0eb5c92 100644 --- a/stability-tests/orphans/prepare_blocks.go +++ b/stability-tests/orphans/prepare_blocks.go @@ -1,12 +1,12 @@ package main import ( - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database/ldb" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/stability-tests/common/mine" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/infrastructure/db/database/ldb" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/stability-tests/common/mine" "github.com/pkg/errors" ) diff --git a/stability-tests/orphans/send_blocks.go b/stability-tests/orphans/send_blocks.go index 7edc684ef..9d0577a54 100644 --- a/stability-tests/orphans/send_blocks.go +++ b/stability-tests/orphans/send_blocks.go @@ -1,10 +1,10 @@ package main import ( - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/infrastructure/network/netadapter/standalone" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/infrastructure/network/netadapter/standalone" "github.com/pkg/errors" ) diff --git a/stability-tests/reorg/config.go b/stability-tests/reorg/config.go index 32b0bd94d..2b8569d24 100644 --- a/stability-tests/reorg/config.go +++ b/stability-tests/reorg/config.go @@ -4,8 +4,8 @@ import ( "os" "path/filepath" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/stability-tests/common" "github.com/jessevdk/go-flags" ) diff --git a/stability-tests/reorg/log.go b/stability-tests/reorg/log.go index 48195e218..b19605915 100644 --- a/stability-tests/reorg/log.go +++ b/stability-tests/reorg/log.go @@ -1,8 +1,8 @@ package main import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var ( diff --git a/stability-tests/reorg/main.go b/stability-tests/reorg/main.go index 80ac9fb00..b583af46e 100644 --- a/stability-tests/reorg/main.go +++ b/stability-tests/reorg/main.go @@ -4,8 +4,8 @@ import ( "fmt" "os" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/util/profiling" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/util/profiling" ) func main() { diff --git a/stability-tests/reorg/reorg.go b/stability-tests/reorg/reorg.go index 24b7eaa38..538d22226 100644 --- a/stability-tests/reorg/reorg.go +++ b/stability-tests/reorg/reorg.go @@ -7,13 +7,13 @@ import ( "os" "time" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/testapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/testapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/dagconfig" ) func testReorg(cfg *configFlags) { diff --git a/stability-tests/rpc-idle-clients/config.go b/stability-tests/rpc-idle-clients/config.go index 03565ea50..187995c31 100644 --- a/stability-tests/rpc-idle-clients/config.go +++ b/stability-tests/rpc-idle-clients/config.go @@ -3,10 +3,10 @@ package main import ( "path/filepath" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/stability-tests/common/rpc" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/stability-tests/common/rpc" "github.com/jessevdk/go-flags" ) diff --git a/stability-tests/rpc-idle-clients/log.go b/stability-tests/rpc-idle-clients/log.go index 19a7b01bc..9d4b8adde 100644 --- a/stability-tests/rpc-idle-clients/log.go +++ b/stability-tests/rpc-idle-clients/log.go @@ -1,8 +1,8 @@ package main import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var ( diff --git a/stability-tests/rpc-idle-clients/main.go b/stability-tests/rpc-idle-clients/main.go index 3aad7e77e..545a4307d 100644 --- a/stability-tests/rpc-idle-clients/main.go +++ b/stability-tests/rpc-idle-clients/main.go @@ -3,10 +3,10 @@ package main import ( "time" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/stability-tests/common/rpc" - "github.com/c4ei/YunSeokYeol/util/panics" - "github.com/c4ei/YunSeokYeol/util/profiling" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/stability-tests/common/rpc" + "github.com/c4ei/yunseokyeol/util/panics" + "github.com/c4ei/yunseokyeol/util/profiling" "github.com/pkg/errors" ) diff --git a/stability-tests/rpc-stability/config.go b/stability-tests/rpc-stability/config.go index ee1cb5372..e432214c1 100644 --- a/stability-tests/rpc-stability/config.go +++ b/stability-tests/rpc-stability/config.go @@ -3,10 +3,10 @@ package main import ( "path/filepath" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/stability-tests/common/rpc" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/stability-tests/common/rpc" "github.com/jessevdk/go-flags" ) diff --git a/stability-tests/rpc-stability/log.go b/stability-tests/rpc-stability/log.go index 14be40779..d67fd6b27 100644 --- a/stability-tests/rpc-stability/log.go +++ b/stability-tests/rpc-stability/log.go @@ -1,8 +1,8 @@ package main import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var ( diff --git a/stability-tests/rpc-stability/main.go b/stability-tests/rpc-stability/main.go index fd9ff41b4..d2de564fe 100644 --- a/stability-tests/rpc-stability/main.go +++ b/stability-tests/rpc-stability/main.go @@ -1,10 +1,10 @@ package main import ( - "github.com/c4ei/YunSeokYeol/infrastructure/network/rpcclient/grpcclient" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/util/panics" - "github.com/c4ei/YunSeokYeol/util/profiling" + "github.com/c4ei/yunseokyeol/infrastructure/network/rpcclient/grpcclient" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/util/panics" + "github.com/c4ei/yunseokyeol/util/profiling" "github.com/pkg/errors" ) diff --git a/stability-tests/rpc-stability/send.go b/stability-tests/rpc-stability/send.go index a941c9754..259e22def 100644 --- a/stability-tests/rpc-stability/send.go +++ b/stability-tests/rpc-stability/send.go @@ -1,7 +1,7 @@ package main import ( - "github.com/c4ei/YunSeokYeol/infrastructure/network/rpcclient/grpcclient" + "github.com/c4ei/yunseokyeol/infrastructure/network/rpcclient/grpcclient" "github.com/pkg/errors" ) diff --git a/stability-tests/simple-sync/config.go b/stability-tests/simple-sync/config.go index 3cd11f858..6ea5d5a31 100644 --- a/stability-tests/simple-sync/config.go +++ b/stability-tests/simple-sync/config.go @@ -3,8 +3,8 @@ package main import ( "path/filepath" - "github.com/c4ei/YunSeokYeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/stability-tests/common" "github.com/jessevdk/go-flags" ) diff --git a/stability-tests/simple-sync/log.go b/stability-tests/simple-sync/log.go index ba38ab875..d390807b4 100644 --- a/stability-tests/simple-sync/log.go +++ b/stability-tests/simple-sync/log.go @@ -4,9 +4,9 @@ import ( "fmt" "os" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/util/panics" ) var ( diff --git a/stability-tests/simple-sync/main.go b/stability-tests/simple-sync/main.go index 2e23a7cc1..ae7b429ce 100644 --- a/stability-tests/simple-sync/main.go +++ b/stability-tests/simple-sync/main.go @@ -4,10 +4,10 @@ import ( "os" "sync/atomic" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/stability-tests/common/rpc" - "github.com/c4ei/YunSeokYeol/util/panics" - "github.com/c4ei/YunSeokYeol/util/profiling" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/stability-tests/common/rpc" + "github.com/c4ei/yunseokyeol/util/panics" + "github.com/c4ei/yunseokyeol/util/profiling" "github.com/pkg/errors" ) diff --git a/stability-tests/simple-sync/mineloop.go b/stability-tests/simple-sync/mineloop.go index 95c13c911..5d34cec9a 100644 --- a/stability-tests/simple-sync/mineloop.go +++ b/stability-tests/simple-sync/mineloop.go @@ -3,10 +3,10 @@ package main import ( "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/stability-tests/common/rpc" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/stability-tests/common/rpc" + "github.com/c4ei/yunseokyeol/util" "github.com/kaspanet/go-secp256k1" "github.com/pkg/errors" ) diff --git a/stability-tests/simple-sync/start-nodes.go b/stability-tests/simple-sync/start-nodes.go index 089b4b789..beb3d52e1 100644 --- a/stability-tests/simple-sync/start-nodes.go +++ b/stability-tests/simple-sync/start-nodes.go @@ -7,8 +7,8 @@ import ( "sync/atomic" "time" - "github.com/c4ei/YunSeokYeol/stability-tests/common" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/stability-tests/common" + "github.com/c4ei/yunseokyeol/util/panics" "github.com/pkg/errors" ) diff --git a/testing/integration/16_incoming_connections_test.go b/testing/integration/16_incoming_connections_test.go index 435d7e525..496c34c60 100644 --- a/testing/integration/16_incoming_connections_test.go +++ b/testing/integration/16_incoming_connections_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" ) func Test16IncomingConnections(t *testing.T) { diff --git a/testing/integration/address_exchange_test.go b/testing/integration/address_exchange_test.go index 46f982973..e3cde19dc 100644 --- a/testing/integration/address_exchange_test.go +++ b/testing/integration/address_exchange_test.go @@ -3,7 +3,7 @@ package integration import ( "testing" - "github.com/c4ei/YunSeokYeol/infrastructure/network/addressmanager" + "github.com/c4ei/yunseokyeol/infrastructure/network/addressmanager" ) func TestAddressExchange(t *testing.T) { diff --git a/testing/integration/basic_sync_test.go b/testing/integration/basic_sync_test.go index b4cb4664b..acf5dd224 100644 --- a/testing/integration/basic_sync_test.go +++ b/testing/integration/basic_sync_test.go @@ -4,9 +4,9 @@ import ( "testing" "time" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" ) func TestIntegrationBasicSync(t *testing.T) { diff --git a/testing/integration/config_test.go b/testing/integration/config_test.go index f112b542f..40f97591e 100644 --- a/testing/integration/config_test.go +++ b/testing/integration/config_test.go @@ -5,8 +5,8 @@ import ( "testing" "time" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/infrastructure/config" ) const ( diff --git a/testing/integration/ibd_test.go b/testing/integration/ibd_test.go index 43578c855..2c0f2d2a7 100644 --- a/testing/integration/ibd_test.go +++ b/testing/integration/ibd_test.go @@ -7,13 +7,13 @@ import ( "testing" "time" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/mining" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/mining" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" ) func TestIBD(t *testing.T) { diff --git a/testing/integration/log_test.go b/testing/integration/log_test.go index 1840ec2c7..a933ad744 100644 --- a/testing/integration/log_test.go +++ b/testing/integration/log_test.go @@ -6,8 +6,8 @@ package integration import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/util/panics" ) var log = logger.RegisterSubSystem("INTG") diff --git a/testing/integration/main_test.go b/testing/integration/main_test.go index 9147a59a7..f60669948 100644 --- a/testing/integration/main_test.go +++ b/testing/integration/main_test.go @@ -4,7 +4,7 @@ import ( "os" "testing" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) func TestMain(m *testing.M) { diff --git a/testing/integration/mining_test.go b/testing/integration/mining_test.go index b5c089f94..4c14b9269 100644 --- a/testing/integration/mining_test.go +++ b/testing/integration/mining_test.go @@ -5,9 +5,9 @@ import ( "testing" "time" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/mining" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/mining" ) func mineNextBlock(t *testing.T, harness *appHarness) *externalapi.DomainBlock { diff --git a/testing/integration/notifications_test.go b/testing/integration/notifications_test.go index fb88dd562..6e8a61f02 100644 --- a/testing/integration/notifications_test.go +++ b/testing/integration/notifications_test.go @@ -3,7 +3,7 @@ package integration import ( "testing" - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" ) func setOnBlockAddedHandler(t *testing.T, harness *appHarness, handler func(notification *appmessage.BlockAddedNotificationMessage)) { diff --git a/testing/integration/rpc_test.go b/testing/integration/rpc_test.go index 59e1f6fce..575f54dcd 100644 --- a/testing/integration/rpc_test.go +++ b/testing/integration/rpc_test.go @@ -5,9 +5,9 @@ import ( "testing" "time" - "github.com/c4ei/YunSeokYeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/infrastructure/config" - "github.com/c4ei/YunSeokYeol/infrastructure/network/rpcclient" + "github.com/c4ei/yunseokyeol/infrastructure/network/rpcclient" ) const rpcTimeout = 10 * time.Second diff --git a/testing/integration/selected_parent_chain_test.go b/testing/integration/selected_parent_chain_test.go index 90d46393d..3f6827cbf 100644 --- a/testing/integration/selected_parent_chain_test.go +++ b/testing/integration/selected_parent_chain_test.go @@ -3,10 +3,10 @@ package integration import ( "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" ) func TestVirtualSelectedParentChain(t *testing.T) { diff --git a/testing/integration/setup_test.go b/testing/integration/setup_test.go index e06299439..2209c6742 100644 --- a/testing/integration/setup_test.go +++ b/testing/integration/setup_test.go @@ -4,14 +4,14 @@ import ( "path/filepath" "testing" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database/ldb" + "github.com/c4ei/yunseokyeol/infrastructure/db/database/ldb" - "github.com/c4ei/YunSeokYeol/infrastructure/db/database" + "github.com/c4ei/yunseokyeol/infrastructure/db/database" - "github.com/c4ei/YunSeokYeol/app" - "github.com/c4ei/YunSeokYeol/infrastructure/config" + "github.com/c4ei/yunseokyeol/app" + "github.com/c4ei/yunseokyeol/infrastructure/config" ) type appHarness struct { diff --git a/testing/integration/tx_relay_test.go b/testing/integration/tx_relay_test.go index 38cbedd1b..884be6d16 100644 --- a/testing/integration/tx_relay_test.go +++ b/testing/integration/tx_relay_test.go @@ -6,17 +6,17 @@ import ( "testing" "time" - "github.com/c4ei/YunSeokYeol/app/protocol/flowcontext" + "github.com/c4ei/yunseokyeol/app/protocol/flowcontext" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/util" "github.com/kaspanet/go-secp256k1" ) diff --git a/testing/integration/utxo_index_test.go b/testing/integration/utxo_index_test.go index 2b4cbb66f..6cc7d875d 100644 --- a/testing/integration/utxo_index_test.go +++ b/testing/integration/utxo_index_test.go @@ -4,15 +4,15 @@ import ( "encoding/hex" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/utxo" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/utxo" - "github.com/c4ei/YunSeokYeol/app/appmessage" - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/consensushashing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionid" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/txscript" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/app/appmessage" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/consensushashing" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionid" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/txscript" + "github.com/c4ei/yunseokyeol/util" "github.com/kaspanet/go-secp256k1" ) diff --git a/testing/integration/virtual_selected_parent_blue_score_test.go b/testing/integration/virtual_selected_parent_blue_score_test.go index ae735ae69..2bf913cb0 100644 --- a/testing/integration/virtual_selected_parent_blue_score_test.go +++ b/testing/integration/virtual_selected_parent_blue_score_test.go @@ -3,7 +3,7 @@ package integration import ( "testing" - "github.com/c4ei/YunSeokYeol/app/appmessage" + "github.com/c4ei/yunseokyeol/app/appmessage" ) func TestVirtualSelectedParentBlueScoreAndVirtualDAAScore(t *testing.T) { diff --git a/util/address.go b/util/address.go index ec0133d0f..63f6dcfe1 100644 --- a/util/address.go +++ b/util/address.go @@ -8,7 +8,7 @@ import ( "github.com/pkg/errors" "golang.org/x/crypto/blake2b" - "github.com/c4ei/YunSeokYeol/util/bech32" + "github.com/c4ei/yunseokyeol/util/bech32" ) var ( diff --git a/util/address_test.go b/util/address_test.go index 1e958a15b..fc45d77f9 100644 --- a/util/address_test.go +++ b/util/address_test.go @@ -13,7 +13,7 @@ import ( "golang.org/x/crypto/blake2b" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/util" ) func TestAddresses(t *testing.T) { diff --git a/util/amount.go b/util/amount.go index 7ee53ba22..21d53e719 100644 --- a/util/amount.go +++ b/util/amount.go @@ -8,7 +8,7 @@ import ( "math" "strconv" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" "github.com/pkg/errors" ) diff --git a/util/amount_test.go b/util/amount_test.go index 8a9ad27b4..59be64ffe 100644 --- a/util/amount_test.go +++ b/util/amount_test.go @@ -8,9 +8,9 @@ import ( "math" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/constants" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/constants" - . "github.com/c4ei/YunSeokYeol/util" + . "github.com/c4ei/yunseokyeol/util" ) func TestAmountCreation(t *testing.T) { diff --git a/util/appdata_test.go b/util/appdata_test.go index a38c4d733..2bf63c5fa 100644 --- a/util/appdata_test.go +++ b/util/appdata_test.go @@ -12,7 +12,7 @@ import ( "testing" "unicode" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/util" ) // TestAppDataDir tests the API for AppDir to ensure it gives expected diff --git a/util/bech32/README.md b/util/bech32/README.md index 8804f1f24..cf3818858 100644 --- a/util/bech32/README.md +++ b/util/bech32/README.md @@ -2,14 +2,14 @@ bech32 ========== [![ISC License](http://img.shields.io/badge/license-ISC-blue.svg)](https://choosealicense.com/licenses/isc/) -[![GoDoc](https://godoc.org/github.com/c4ei/YunSeokYeol/util/bech32?status.png)](http://godoc.org/github.com/c4ei/YunSeokYeol/util/bech32) +[![GoDoc](https://godoc.org/github.com/c4ei/yunseokyeol/util/bech32?status.png)](http://godoc.org/github.com/c4ei/yunseokyeol/util/bech32) Package bech32 provides a Go implementation of the bech32 format. ## Examples -* [Bech32 decode Example](http://godoc.org/github.com/c4ei/YunSeokYeol/util/bech32#example-Bech32Decode) +* [Bech32 decode Example](http://godoc.org/github.com/c4ei/yunseokyeol/util/bech32#example-Bech32Decode) Demonstrates how to decode a bech32 encoded string. -* [Bech32 encode Example](http://godoc.org/github.com/c4ei/YunSeokYeol/util/bech32#example-BechEncode) +* [Bech32 encode Example](http://godoc.org/github.com/c4ei/yunseokyeol/util/bech32#example-BechEncode) Demonstrates how to encode data into a bech32 string. diff --git a/util/bech32/bech32_test.go b/util/bech32/bech32_test.go index 0973a3fa1..ce991b83b 100644 --- a/util/bech32/bech32_test.go +++ b/util/bech32/bech32_test.go @@ -7,7 +7,7 @@ package bech32_test import ( "testing" - "github.com/c4ei/YunSeokYeol/util/bech32" + "github.com/c4ei/yunseokyeol/util/bech32" ) var checkEncodingStringTests = []struct { diff --git a/util/bech32/example_test.go b/util/bech32/example_test.go index 23e8cde6c..1efc451d9 100644 --- a/util/bech32/example_test.go +++ b/util/bech32/example_test.go @@ -8,7 +8,7 @@ import ( "encoding/hex" "fmt" - "github.com/c4ei/YunSeokYeol/util/bech32" + "github.com/c4ei/yunseokyeol/util/bech32" ) // This example demonstrates how to decode a bech32 encoded string. diff --git a/util/difficulty/difficulty_test.go b/util/difficulty/difficulty_test.go index 4feadd978..1f921feb8 100644 --- a/util/difficulty/difficulty_test.go +++ b/util/difficulty/difficulty_test.go @@ -6,11 +6,11 @@ import ( "math/big" "testing" - "github.com/c4ei/YunSeokYeol/domain/consensus" + "github.com/c4ei/yunseokyeol/domain/consensus" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/testutils" - "github.com/c4ei/YunSeokYeol/domain/dagconfig" - "github.com/c4ei/YunSeokYeol/util/difficulty" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/testutils" + "github.com/c4ei/yunseokyeol/domain/dagconfig" + "github.com/c4ei/yunseokyeol/util/difficulty" ) func TestGetHashrateString(t *testing.T) { diff --git a/util/example_test.go b/util/example_test.go index 35f0cd655..68d6752f2 100644 --- a/util/example_test.go +++ b/util/example_test.go @@ -5,9 +5,9 @@ import ( "math" "math/big" - "github.com/c4ei/YunSeokYeol/util/difficulty" + "github.com/c4ei/yunseokyeol/util/difficulty" - "github.com/c4ei/YunSeokYeol/util" + "github.com/c4ei/yunseokyeol/util" ) func ExampleAmount() { diff --git a/util/internal_test.go b/util/internal_test.go index af31126ae..b28532fb5 100644 --- a/util/internal_test.go +++ b/util/internal_test.go @@ -12,7 +12,7 @@ interface. The functions are only exported while the tests are being run. package util import ( - "github.com/c4ei/YunSeokYeol/util/bech32" + "github.com/c4ei/yunseokyeol/util/bech32" "golang.org/x/crypto/blake2b" ) diff --git a/util/locks/log.go b/util/locks/log.go index ca734c5a5..91affd9ed 100644 --- a/util/locks/log.go +++ b/util/locks/log.go @@ -1,7 +1,7 @@ package locks import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var log = logger.RegisterSubSystem("UTIL") diff --git a/util/math/min_test.go b/util/math/min_test.go index 026a1bee0..7fedc264c 100644 --- a/util/math/min_test.go +++ b/util/math/min_test.go @@ -4,7 +4,7 @@ import ( "math" "testing" - utilMath "github.com/c4ei/YunSeokYeol/util/math" + utilMath "github.com/c4ei/yunseokyeol/util/math" ) const ( diff --git a/util/panics/log.go b/util/panics/log.go index 47f2641ba..02662be95 100644 --- a/util/panics/log.go +++ b/util/panics/log.go @@ -1,7 +1,7 @@ package panics import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var utilLog = logger.RegisterSubSystem("UTIL") diff --git a/util/panics/panics.go b/util/panics/panics.go index 4622a5139..0ad05966b 100644 --- a/util/panics/panics.go +++ b/util/panics/panics.go @@ -7,7 +7,7 @@ import ( "sync/atomic" "time" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) const exitHandlerTimeout = 5 * time.Second diff --git a/util/profiling/profiling.go b/util/profiling/profiling.go index 566240fb7..dbfddc453 100644 --- a/util/profiling/profiling.go +++ b/util/profiling/profiling.go @@ -8,7 +8,7 @@ import ( "path/filepath" "time" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" // Required for profiling _ "net/http/pprof" @@ -16,7 +16,7 @@ import ( "runtime" "runtime/pprof" - "github.com/c4ei/YunSeokYeol/util/panics" + "github.com/c4ei/yunseokyeol/util/panics" ) // heapDumpFileName is the name of the heap dump file. We want every run to have its own diff --git a/util/staging/commit_all_changes.go b/util/staging/commit_all_changes.go index abbedf9ef..a788d33c2 100644 --- a/util/staging/commit_all_changes.go +++ b/util/staging/commit_all_changes.go @@ -3,8 +3,8 @@ package staging import ( "sync/atomic" - "github.com/c4ei/YunSeokYeol/domain/consensus/model" - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/domain/consensus/model" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) // CommitAllChanges creates a transaction in `databaseContext`, and commits all changes in `stagingArea` through it. diff --git a/util/staging/log.go b/util/staging/log.go index fa72fc00b..7e9271de9 100644 --- a/util/staging/log.go +++ b/util/staging/log.go @@ -1,7 +1,7 @@ package staging import ( - "github.com/c4ei/YunSeokYeol/infrastructure/logger" + "github.com/c4ei/yunseokyeol/infrastructure/logger" ) var utilLog = logger.RegisterSubSystem("UTIL") diff --git a/util/txmass/calculator.go b/util/txmass/calculator.go index c66355671..f895802e0 100644 --- a/util/txmass/calculator.go +++ b/util/txmass/calculator.go @@ -1,8 +1,8 @@ package txmass import ( - "github.com/c4ei/YunSeokYeol/domain/consensus/model/externalapi" - "github.com/c4ei/YunSeokYeol/domain/consensus/utils/transactionhelper" + "github.com/c4ei/yunseokyeol/domain/consensus/model/externalapi" + "github.com/c4ei/yunseokyeol/domain/consensus/utils/transactionhelper" ) // Calculator exposes methods to calculate the mass of a transaction diff --git a/version/version.go b/version/version.go index 886493b24..fcd6cfb03 100644 --- a/version/version.go +++ b/version/version.go @@ -15,7 +15,7 @@ const ( ) // appBuild is defined as a variable so it can be overridden during the build -// process with '-ldflags "-X github.com/c4ei/YunSeokYeol/version.appBuild=foo"' if needed. +// process with '-ldflags "-X github.com/c4ei/yunseokyeol/version.appBuild=foo"' if needed. // It MUST only contain characters from validCharacters. var appBuild string