diff --git a/examples/runtime/runtime.go b/examples/runtime/runtime.go index a436dbf9e..6c11632ee 100644 --- a/examples/runtime/runtime.go +++ b/examples/runtime/runtime.go @@ -1,8 +1,8 @@ package runtime_contract import ( - "github.com/CityOfZion/neo-go-sc/interop/runtime" - "github.com/CityOfZion/neo-go-sc/interop/util" + "github.com/CityOfZion/neo-storm/interop/runtime" + "github.com/CityOfZion/neo-storm/interop/util" ) // Check if the invoker of the contract is the specified owner diff --git a/examples/storage/storage.go b/examples/storage/storage.go index 002c98d62..bca5c86e5 100644 --- a/examples/storage/storage.go +++ b/examples/storage/storage.go @@ -1,7 +1,7 @@ package storage_contract import ( - "github.com/CityOfZion/neo-go-sc/interop/storage" + "github.com/CityOfZion/neo-storm/interop/storage" ) func Main(operation string, args []interface{}) interface{} { diff --git a/interop/account/account.go b/interop/account/account.go index 04982aa1b..cb60fac54 100644 --- a/interop/account/account.go +++ b/interop/account/account.go @@ -1,7 +1,7 @@ package account // Package account provides function signatures that can be used inside -// smart contracts that are written in the neo-go-sc framework. +// smart contracts that are written in the neo-storm framework. // Account stubs a NEO account type. type Account struct{} diff --git a/interop/asset/asset.go b/interop/asset/asset.go index 6e8a436db..e3242b777 100644 --- a/interop/asset/asset.go +++ b/interop/asset/asset.go @@ -1,7 +1,7 @@ package asset // Package asset provides function signatures that can be used inside -// smart contracts that are written in the neo-go-sc framework. +// smart contracts that are written in the neo-storm framework. // Asset stubs a NEO asset type. type Asset struct{} diff --git a/interop/attribute/attribute.go b/interop/attribute/attribute.go index b1fb82667..e53a06165 100644 --- a/interop/attribute/attribute.go +++ b/interop/attribute/attribute.go @@ -1,7 +1,7 @@ package attribute // Package attribute provides function signatures that can be used inside -// smart contracts that are written in the neo-go-sc framework. +// smart contracts that are written in the neo-storm framework. // Attribute stubs a NEO transaction attribute type. type Attribute struct{} diff --git a/interop/block/block.go b/interop/block/block.go index c1368a6ed..11fc9f6b4 100644 --- a/interop/block/block.go +++ b/interop/block/block.go @@ -1,9 +1,9 @@ package block -import "github.com/CityOfZion/neo-go-sc/interop/transaction" +import "github.com/CityOfZion/neo-storm/interop/transaction" // Package block provides function signatures that can be used inside -// smart contracts that are written in the neo-go-sc framework. +// smart contracts that are written in the neo-storm framework. // Block stubs a NEO block type. type Block struct{} diff --git a/interop/blockchain/blockchain.go b/interop/blockchain/blockchain.go index a3dc184c9..80f12a676 100644 --- a/interop/blockchain/blockchain.go +++ b/interop/blockchain/blockchain.go @@ -1,16 +1,16 @@ package blockchain import ( - "github.com/CityOfZion/neo-go-sc/interop/account" - "github.com/CityOfZion/neo-go-sc/interop/asset" - "github.com/CityOfZion/neo-go-sc/interop/block" - "github.com/CityOfZion/neo-go-sc/interop/contract" - "github.com/CityOfZion/neo-go-sc/interop/header" - "github.com/CityOfZion/neo-go-sc/interop/transaction" + "github.com/CityOfZion/neo-storm/interop/account" + "github.com/CityOfZion/neo-storm/interop/asset" + "github.com/CityOfZion/neo-storm/interop/block" + "github.com/CityOfZion/neo-storm/interop/contract" + "github.com/CityOfZion/neo-storm/interop/header" + "github.com/CityOfZion/neo-storm/interop/transaction" ) // Package blockchain provides function signatures that can be used inside -// smart contracts that are written in the neo-go-sc framework. +// smart contracts that are written in the neo-storm framework. // GetHeight returns the height of te block recorded in the current execution scope. func GetHeight() int { diff --git a/interop/contract/contract.go b/interop/contract/contract.go index 2c6555751..c1fffcdb4 100644 --- a/interop/contract/contract.go +++ b/interop/contract/contract.go @@ -1,7 +1,7 @@ package contract // Package contract provides function signatures that can be used inside -// smart contracts that are written in the neo-go-sc framework. +// smart contracts that are written in the neo-storm framework. // Contract stubs a NEO contract type. type Contract struct{} diff --git a/interop/header/header.go b/interop/header/header.go index cc7f23052..29fa5d9da 100644 --- a/interop/header/header.go +++ b/interop/header/header.go @@ -1,7 +1,7 @@ package header // Package header provides function signatures that can be used inside -// smart contracts that are written in the neo-go-sc framework. +// smart contracts that are written in the neo-storm framework. // Header stubs a NEO block header type. type Header struct{} diff --git a/interop/input/input.go b/interop/input/input.go index 63f97a1c6..cdc0a0336 100644 --- a/interop/input/input.go +++ b/interop/input/input.go @@ -1,7 +1,7 @@ package input // Package input provides function signatures that can be used inside -// smart contracts that are written in the neo-go-sc framework. +// smart contracts that are written in the neo-storm framework. // Input stubs the input of a NEO transaction. type Input struct{} diff --git a/interop/output/output.go b/interop/output/output.go index 90bd0d567..08f2230df 100644 --- a/interop/output/output.go +++ b/interop/output/output.go @@ -1,7 +1,7 @@ package output // Package output provides function signatures that can be used inside -// smart contracts that are written in the neo-go-sc framework. +// smart contracts that are written in the neo-storm framework. // Output stubs the output of a NEO transaction. type Output struct{} diff --git a/interop/runtime/runtime.go b/interop/runtime/runtime.go index 367f07600..9f27ec001 100644 --- a/interop/runtime/runtime.go +++ b/interop/runtime/runtime.go @@ -1,7 +1,7 @@ package runtime // Package runtime provides function signatures that can be used inside -// smart contracts that are written in the neo-go-sc framework. +// smart contracts that are written in the neo-storm framework. // CheckWitness verifies if the given hash is the invoker of the contract. func CheckWitness(hash []byte) bool { diff --git a/interop/storage/storage.go b/interop/storage/storage.go index 5f6d0b375..b280e834f 100644 --- a/interop/storage/storage.go +++ b/interop/storage/storage.go @@ -1,7 +1,7 @@ package storage // Package storage provides function signatures that can be used inside -// smart contracts that are written in the neo-go-sc framework. +// smart contracts that are written in the neo-storm framework. // Context represents the storage context type Context struct{} diff --git a/interop/transaction/transaction.go b/interop/transaction/transaction.go index d02ee086e..e845a1171 100644 --- a/interop/transaction/transaction.go +++ b/interop/transaction/transaction.go @@ -1,13 +1,13 @@ package transaction import ( - "github.com/CityOfZion/neo-go-sc/interop/attribute" - "github.com/CityOfZion/neo-go-sc/interop/input" - "github.com/CityOfZion/neo-go-sc/interop/output" + "github.com/CityOfZion/neo-storm/interop/attribute" + "github.com/CityOfZion/neo-storm/interop/input" + "github.com/CityOfZion/neo-storm/interop/output" ) // Package transaction provides function signatures that can be used inside -// smart contracts that are written in the neo-go-sc framework. +// smart contracts that are written in the neo-storm framework. // Transaction stubs a NEO transaction type. type Transaction struct{}