github.com/Blockdaemon/celo-blockchain@v0.0.0-20200129231733-e667f6b08419/contract_comm/errors/errors.go (about) 1 package errors 2 3 import ( 4 "errors" 5 ) 6 7 var ( 8 // ErrSmartContractNotDeployed is returned when the RegisteredAddresses mapping does not contain the specified contract 9 ErrSmartContractNotDeployed = errors.New("Contract not in Registry") 10 ErrRegistryContractNotDeployed = errors.New("Registry not deployed") 11 ErrNoInternalEvmHandlerSingleton = errors.New("No internalEvmHandlerSingleton set for contract communication") 12 )