Use @parity/abi

This commit is contained in:
Jaco Greeff 2017-04-20 10:34:00 +02:00
parent b3056cd0ab
commit 4568300d9b
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
import Abi from '~/abi';
import Abi from '@parity/abi';
let nextSubscriptionId = 0;

View File

@ -14,8 +14,8 @@
// You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
import Abi from '~/abi';
import Func from '~/abi/spec/function';
import Abi from '@parity/abi';
import Func from '@parity/abi/spec/function';
import { abiDecode } from './decode';
import { cleanupValue } from './format';