Skip to content

Commit

Permalink
Final
Browse files Browse the repository at this point in the history
  • Loading branch information
dvush committed Apr 29, 2020
1 parent 367ce6a commit c611598
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,10 @@ steps:
services:
- name: geth
image: matterlabs/geth:latest
settings:
config: standard

- name: geth_fast
- name: geth-fast
image: matterlabs/geth:latest
settings:
config: fast
Expand Down Expand Up @@ -237,6 +238,7 @@ steps:
services:
- name: geth
image: matterlabs/geth:latest
settings:
config: standard

- name: postgres
Expand Down
6 changes: 4 additions & 2 deletions core/storage/src/tests/chain/operations_ext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,15 @@ fn get_account_transactions_history() {
Token::new(2, Address::random(), "FAU"), // used for withdraws
];

let from_zksync_account = ZksyncAccount::rand();
let from_account_id = 0xbabe;
let mut from_zksync_account = ZksyncAccount::rand();
from_zksync_account.account_id = Some(from_account_id);
let from_account_address = from_zksync_account.address;
let from_account_address_string = format!("{:?}", &from_account_address);

let to_zksync_account = ZksyncAccount::rand();
let to_account_id = 0xdcba;
let mut to_zksync_account = ZksyncAccount::rand();
to_zksync_account.account_id = Some(to_account_id);
let to_account_address = to_zksync_account.address;
let to_account_address_string = format!("{:?}", &to_account_address);

Expand Down
2 changes: 1 addition & 1 deletion etc/env/dev.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ DRONE_SERVER=""
DRONE_TOKEN=""

# ETH watcher configuration
CONFIRMATIONS_FOR_ETH_EVENT=1
CONFIRMATIONS_FOR_ETH_EVENT=0
# poll interval milliseconds
ETH_WATCH_POLL_INTERVAL=300

Expand Down
Binary file not shown.

0 comments on commit c611598

Please sign in to comment.