Skip to content

Commit 0ef3576

Browse files
authored
Merge pull request #16 from snakewaypasser/develop
Update dpops vote time with utc time and switch xcash-core to master
2 parents a3fd181 + 2be7237 commit 0ef3576

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

app/src/main/java/com/xcash/wallet/DpopsActivity.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,10 @@
5757
import java.util.ArrayList;
5858
import java.util.Calendar;
5959
import java.util.List;
60+
import java.util.TimeZone;
6061

6162

62-
public class DpopsActivity extends NewBaseActivity {
63+
public class DpopsActivity extends NewBaseActivity {
6364

6465
private Wallet wallet;
6566
private int view_normal_margin_default;
@@ -386,6 +387,7 @@ private void checkVote(View view) {
386387
}
387388

388389
Calendar calendar = Calendar.getInstance();
390+
calendar.setTimeZone(TimeZone.getTimeZone("UTC"));
389391
int minute=calendar.get(Calendar.MINUTE);
390392
int second=calendar.get(Calendar.SECOND);
391393
int waitMinute=0;

xcash-libs/script/monero-fetch.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ url="https://github.com/X-CASH-official/xcash-core.git"
1111
if [ ! -d "xcash-core" ]; then
1212
git clone ${url}
1313
cd xcash-core
14-
git checkout xcash_proof_of_stake
14+
git checkout master
1515
git submodule update --recursive --init
1616
else
1717
cd xcash-core
18-
git checkout xcash_proof_of_stake
18+
git checkout master
1919
git pull
2020
git submodule update --recursive --init
2121
fi

0 commit comments

Comments
 (0)