From a62f016017d9e7bf872e8e8dbec5f4d4581b515c Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Fri, 12 Apr 2019 10:42:54 -0700 Subject: [PATCH] fix: adapt to insruction.key field changes --- api/inbound-stream.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/inbound-stream.js b/api/inbound-stream.js index 08324e5b..cb6a0ef1 100644 --- a/api/inbound-stream.js +++ b/api/inbound-stream.js @@ -50,7 +50,7 @@ class BridgeFn { let inst = {}; inst.keys = _.map(y.keys, z => { - return z.toBase58(); + return `${z.pubkey.toBase58()} (is_signer=${z.isSigner})`; }); inst.program_id = y.programId.toBase58(); inst.data = b58e(y.data);