Skip to content
This repository has been archived by the owner on Jul 22, 2020. It is now read-only.

Commit

Permalink
fix: adapt to insruction.key field changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines committed Apr 12, 2019
1 parent 68df024 commit a62f016
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/inbound-stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit a62f016

Please sign in to comment.