mirror of https://github.com/waku-org/js-waku.git
Move waku_message to dedicated folder
This commit is contained in:
parent
c3b726cb99
commit
7b5c8d6094
|
@ -1,7 +1,7 @@
|
|||
import { expect } from 'chai';
|
||||
import fc from 'fast-check';
|
||||
|
||||
import { WakuMessage } from './waku_message';
|
||||
import { WakuMessage } from './index';
|
||||
|
||||
describe('Waku Message', function () {
|
||||
it('Waku message round trip binary serialization', function () {
|
|
@ -2,7 +2,7 @@
|
|||
import { Reader } from 'protobufjs/minimal';
|
||||
|
||||
// Protecting the user from protobuf oddities
|
||||
import * as proto from '../proto/waku/v2/message';
|
||||
import * as proto from '../../proto/waku/v2/message';
|
||||
|
||||
export const DefaultContentTopic = '/waku/2/default-content/proto';
|
||||
const DefaultVersion = 0;
|
Loading…
Reference in New Issue