// (c) 2019-2020, Ava Labs, Inc. All rights reserved.// See the file LICENSE for licensing terms.packageevm// TxError provides the ability for errors to be distinguished as permenant or// temporarytypeTxErrorinterface{errorTemporary()bool}typetempErrorstruct{error}func(tempError)Temporary()bool{returntrue}typepermErrorstruct{error}func(permError)Temporary()bool{returnfalse}