Skip to content
Snippets Groups Projects
Commit 398fd9a4 authored by justinw's avatar justinw
Browse files

Fix update_proposal_votes.voter being undefined

parent 0f266202
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ import Promise from 'bluebird'; ...@@ -3,7 +3,7 @@ import Promise from 'bluebird';
import should from 'should'; import should from 'should';
import steem from '../src'; import steem from '../src';
const username = process.env.STEEM_USERNAME; const username = process.env.STEEM_USERNAME || 'guest123';
const password = process.env.STEEM_PASSWORD; const password = process.env.STEEM_PASSWORD;
const activeWif = steem.auth.toWif(username, password, 'active'); const activeWif = steem.auth.toWif(username, password, 'active');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment