client/js: algorand submit fix
This commit is contained in:
parent
cb7056d32e
commit
a974bf762e
|
@ -859,7 +859,7 @@ yargs(hideBin(process.argv))
|
||||||
const algorand = require("./algorand")
|
const algorand = require("./algorand")
|
||||||
await algorand.execute_algorand(
|
await algorand.execute_algorand(
|
||||||
parsed_vaa.payload,
|
parsed_vaa.payload,
|
||||||
Buffer.from(vaa_hex, "hex"),
|
new Uint8Array(Buffer.from(vaa_hex, "hex")),
|
||||||
network
|
network
|
||||||
);
|
);
|
||||||
} else if (chain === "near") {
|
} else if (chain === "near") {
|
||||||
|
|
Loading…
Reference in New Issue