Skip to content

Commit

Permalink
Preview4 blockchain changes (#2284) (#2299)
Browse files Browse the repository at this point in the history
* feat(vm): remove testMode, fixup vm, various quick fixes from misc updates issue"

* feat(blockchain): implement new trigger changes / fixup old storage issue

Co-authored-by: Daniel Byrne <danwbyrne@gmail.com>
  • Loading branch information
spencercorwin and danwbyrne committed Feb 4, 2021
1 parent 8483b83 commit 061b345
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/neo-one-node-vm/src/Methods/EngineMethods.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { TriggerType, VMState, UInt160Hex } from '@neo-one/client-common';
import { CallFlags, SerializedScriptContainer, SnapshotName, LoadContractOptions } from '@neo-one/node-core';
import { StackItemReturn, LogReturn } from '../converters';
import { TriggerType, UInt160Hex, VMState } from '@neo-one/client-common';
import { CallFlags, LoadContractOptions, SerializedScriptContainer, SnapshotName } from '@neo-one/node-core';
import { LogReturn, StackItemReturn } from '../converters';
import { DefaultMethods, DispatchMethod } from '../types';

interface CreateEngineArgs {
Expand Down
2 changes: 1 addition & 1 deletion packages/neo-one-node-vm/src/__tests__/Dispatcher.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ describe('Dispatcher Tests', () => {
expect(dispatcher.getConfig()).toBeDefined();
});

test.only('test output only', () => {
test.skip('test output only', () => {
console.log(dispatcher.test());
});
});

0 comments on commit 061b345

Please sign in to comment.