From 34c91c15d7c260cde0f0d6d31ef4e31032c780b4 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 31 Aug 2022 15:25:18 -0400 Subject: [PATCH] *Default id should be 1 --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 1c6b121..87d5c4b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -47,7 +47,7 @@ export class RpcNetwork { let promise = loadLibs(); if (this._def) { - this._networkId = 0; + this._networkId = 1; } else { promise = promise .then(() => callModule(RPC_MODULE, "createNetwork"))