Skip to content

Commit afbd077

Browse files
committed
update error message for "This transaction is not signed"
1 parent 5184804 commit afbd077

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/vm/tests/api/runTx.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ tape('runTx', (t) => {
3232
t.test('should fail to run without signature', async (st) => {
3333
const tx = getTransaction(false)
3434
shouldFail(st, suite.runTx({ tx }), (e: Error) =>
35-
st.ok(e.message.includes('Invalid Signature'), 'should fail with appropriate error')
35+
st.ok(e.message.includes('not signed'), 'should fail with appropriate error')
3636
)
3737
st.end()
3838
})

0 commit comments

Comments
 (0)