Skip to content

Commit

Permalink
Merge pull request #86 from cosmos/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
chcmedeiros authored Mar 27, 2023
2 parents b470589 + 4723471 commit f9ffd32
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/Makefile.version
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ APPVERSION_M=2
# This is the `spec_version` field of `Runtime`
APPVERSION_N=35
# This is the patch version of this release
APPVERSION_P=4
APPVERSION_P=5
Binary file modified tests_zemu/snapshots/s-mainmenu/00004.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/s-mainmenu/00010.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/sp-mainmenu/00004.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/sp-mainmenu/00010.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/x-mainmenu/00004.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/x-mainmenu/00010.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 5 additions & 4 deletions tests_zemu/tests/standard.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ describe('Standard', function () {
const app = new CosmosApp(sim.getTransport())

const path = [44, 118, 0, 0, 0]
const tx = Buffer.from(JSON.stringify(example_tx_str_basic), 'utf-8')
const tx = Buffer.from(JSON.stringify(example_tx_str_basic), "utf-8")

// get address / publickey
const respPk = await app.getAddressAndPubKey(path, 'cosmos')
Expand Down Expand Up @@ -226,7 +226,7 @@ describe('Standard', function () {
const app = new CosmosApp(sim.getTransport())

const path = [44, 118, 0, 0, 0]
const tx = Buffer.from(JSON.stringify(example_tx_str_basic2), 'utf-8')
const tx = Buffer.from(JSON.stringify(example_tx_str_basic2), "utf-8")

// get address / publickey
const respPk = await app.getAddressAndPubKey(path, 'cosmos')
Expand Down Expand Up @@ -270,7 +270,7 @@ describe('Standard', function () {
const app = new CosmosApp(sim.getTransport())

const path = [44, 118, 0, 0, 0]
const tx = Buffer.from(JSON.stringify(example_tx_str_basic), 'utf-8')
const tx = Buffer.from(JSON.stringify(example_tx_str_basic), "utf-8")

// get address / publickey
const respPk = await app.getAddressAndPubKey(path, 'cosmos')
Expand Down Expand Up @@ -315,7 +315,8 @@ describe('Standard', function () {
const app = new CosmosApp(sim.getTransport())

const path = [44, 118, 0, 0, 0]
const tx = Buffer.from(JSON.stringify(ibc_denoms), 'utf-8')
const tx = Buffer.from(JSON.stringify(ibc_denoms), "utf-8")


// get address / publickey
const respPk = await app.getAddressAndPubKey(path, 'cosmos')
Expand Down

0 comments on commit f9ffd32

Please sign in to comment.