File tree 2 files changed +5
-3
lines changed
app/src/main/java/com/xcash/wallet
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 57
57
import java .util .ArrayList ;
58
58
import java .util .Calendar ;
59
59
import java .util .List ;
60
+ import java .util .TimeZone ;
60
61
61
62
62
- public class DpopsActivity extends NewBaseActivity {
63
+ public class DpopsActivity extends NewBaseActivity {
63
64
64
65
private Wallet wallet ;
65
66
private int view_normal_margin_default ;
@@ -386,6 +387,7 @@ private void checkVote(View view) {
386
387
}
387
388
388
389
Calendar calendar = Calendar .getInstance ();
390
+ calendar .setTimeZone (TimeZone .getTimeZone ("UTC" ));
389
391
int minute =calendar .get (Calendar .MINUTE );
390
392
int second =calendar .get (Calendar .SECOND );
391
393
int waitMinute =0 ;
Original file line number Diff line number Diff line change @@ -11,11 +11,11 @@ url="https://github.com/X-CASH-official/xcash-core.git"
11
11
if [ ! -d " xcash-core" ]; then
12
12
git clone ${url}
13
13
cd xcash-core
14
- git checkout xcash_proof_of_stake
14
+ git checkout master
15
15
git submodule update --recursive --init
16
16
else
17
17
cd xcash-core
18
- git checkout xcash_proof_of_stake
18
+ git checkout master
19
19
git pull
20
20
git submodule update --recursive --init
21
21
fi
You can’t perform that action at this time.
0 commit comments