diff --git a/crypto/address.go b/crypto/address.go index 40d08db..0729552 100644 --- a/crypto/address.go +++ b/crypto/address.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto import ( "github.com/ArkEcosystem/go-crypto/crypto/base58" diff --git a/crypto/address_test.go b/crypto/address_test.go index 3e38a0e..4189e7c 100644 --- a/crypto/address_test.go +++ b/crypto/address_test.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto import ( "github.com/stretchr/testify/assert" diff --git a/crypto/builder.go b/crypto/builder.go index e020d1e..ddcdb80 100644 --- a/crypto/builder.go +++ b/crypto/builder.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto func createSignedTransaction(transaction *Transaction, secret string, secondSecret string) *Transaction { transaction.Timestamp = GetTime() diff --git a/crypto/builder_test.go b/crypto/builder_test.go index ca8bef8..9cd69f3 100644 --- a/crypto/builder_test.go +++ b/crypto/builder_test.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto import ( "github.com/stretchr/testify/assert" diff --git a/crypto/configuration.go b/crypto/configuration.go index 0d19469..79b9567 100644 --- a/crypto/configuration.go +++ b/crypto/configuration.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto var ( CONFIG_NETWORK = &Network{} diff --git a/crypto/deserialiser.go b/crypto/deserialiser.go index 5bdeed7..5f448ab 100644 --- a/crypto/deserialiser.go +++ b/crypto/deserialiser.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto import ( "encoding/binary" diff --git a/crypto/deserialiser_test.go b/crypto/deserialiser_test.go index 41ddf87..1ce9bb8 100644 --- a/crypto/deserialiser_test.go +++ b/crypto/deserialiser_test.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto import ( "github.com/stretchr/testify/assert" diff --git a/crypto/enums.go b/crypto/enums.go index d41c4a4..7f6ac60 100644 --- a/crypto/enums.go +++ b/crypto/enums.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto var ( TRANSACTION_TYPES = &TransactionTypes{ diff --git a/crypto/message.go b/crypto/message.go index f9be135..1a68d4e 100644 --- a/crypto/message.go +++ b/crypto/message.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto import ( "crypto/sha256" diff --git a/crypto/message_test.go b/crypto/message_test.go index 88ceee5..6b70d24 100644 --- a/crypto/message_test.go +++ b/crypto/message_test.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto import ( "github.com/stretchr/testify/assert" diff --git a/crypto/networks.go b/crypto/networks.go index b72f437..960701c 100644 --- a/crypto/networks.go +++ b/crypto/networks.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto import "time" diff --git a/crypto/private_key.go b/crypto/private_key.go index 6c8c469..abfb3d2 100644 --- a/crypto/private_key.go +++ b/crypto/private_key.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto import ( "crypto/sha256" diff --git a/crypto/private_key_test.go b/crypto/private_key_test.go index 05c5b02..94bdfa6 100644 --- a/crypto/private_key_test.go +++ b/crypto/private_key_test.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto import ( "github.com/stretchr/testify/assert" diff --git a/crypto/public_key.go b/crypto/public_key.go index 2ba5149..17bd3af 100644 --- a/crypto/public_key.go +++ b/crypto/public_key.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto import ( "github.com/ArkEcosystem/go-crypto/crypto/base58" diff --git a/crypto/public_key_test.go b/crypto/public_key_test.go index 3c9bd82..5a184b5 100644 --- a/crypto/public_key_test.go +++ b/crypto/public_key_test.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto import ( "github.com/stretchr/testify/assert" diff --git a/crypto/serialiser.go b/crypto/serialiser.go index c4661d3..e4f3944 100644 --- a/crypto/serialiser.go +++ b/crypto/serialiser.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto import ( "bytes" diff --git a/crypto/serialiser_test.go b/crypto/serialiser_test.go index 67c9d9d..0468d56 100644 --- a/crypto/serialiser_test.go +++ b/crypto/serialiser_test.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto import ( "github.com/stretchr/testify/assert" diff --git a/crypto/slot.go b/crypto/slot.go index 06a701d..2ceec2c 100644 --- a/crypto/slot.go +++ b/crypto/slot.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto import "time" diff --git a/crypto/structs.go b/crypto/structs.go index c309158..cfdcd8a 100644 --- a/crypto/structs.go +++ b/crypto/structs.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto import ( "github.com/btcsuite/btcd/btcec" diff --git a/crypto/transaction.go b/crypto/transaction.go index 64aa423..a443c2a 100644 --- a/crypto/transaction.go +++ b/crypto/transaction.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto import ( "bytes" diff --git a/crypto/utils.go b/crypto/utils.go index 47ccccd..fb509bc 100644 --- a/crypto/utils.go +++ b/crypto/utils.go @@ -5,7 +5,7 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -package crypto +package arkecosystem_crypto import ( "encoding/hex"