Skip to content

Commit

Permalink
resolve codec error
Browse files Browse the repository at this point in the history
  • Loading branch information
jimjbrettj committed Mar 30, 2023
1 parent 3e9845c commit 6fb9317
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 167 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,12 @@ make install

To install Gossamer

**Note**: Apple Silicon users running aarch64 might run into issues
with our wasm interpreter since wasmer is still working on supporting this architecture.
See their [README](https://github.com/wasmerio/wasmer-go) for me info on supported platforms.
Currently, there are no known issues regarding this within the Gossamer repo, but if you run into one please open an issue
on our GitHub.

## Use Gossamer

A comprehensive guide to
Expand Down
35 changes: 0 additions & 35 deletions lib/runtime/testWasmer/memory.go

This file was deleted.

129 changes: 0 additions & 129 deletions lib/runtime/testWasmer/memory_test.go

This file was deleted.

6 changes: 3 additions & 3 deletions lib/runtime/wasmer/exports_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1071,11 +1071,11 @@ func TestInstance_PaymentQueryInfo(t *testing.T) {
// Was made with @polkadot/api on https://github.com/danforbes/polkadot-js-scripts/tree/create-signed-tx
ext: "0xd1018400d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d01bc2b6e35929aabd5b8bc4e5b0168c9bee59e2bb9d6098769f6683ecf73e44c776652d947a270d59f3d37eb9f9c8c17ec1b4cc473f2f9928ffdeef0f3abd43e85d502000000012844616e20466f72626573", //nolint:lll
expect: &types.RuntimeDispatchInfo{
Weight: 1973000,
Weight: 0,
Class: 0,
PartialFee: &scale.Uint128{
Upper: 0,
Lower: uint64(1180126973000),
Lower: uint64(12800000000),
},
},
},
Expand All @@ -1102,7 +1102,7 @@ func TestInstance_PaymentQueryInfo(t *testing.T) {
require.NoError(t, err)
}

ins := NewTestInstance(t, runtime.NODE_RUNTIME)
ins := NewTestInstance(t, runtime.WESTEND_RUNTIME_v0929)
info, err := ins.PaymentQueryInfo(extBytes)

if test.errMessage != "" {
Expand Down

0 comments on commit 6fb9317

Please sign in to comment.