Skip to content

Commit 5d5f8b1

Browse files
committed
Webwallet fixes
1 parent f2cf797 commit 5d5f8b1

File tree

5 files changed

+666
-535
lines changed

5 files changed

+666
-535
lines changed

configs/forknote-messages.json

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"extensions": [
3+
"core/bytecoin.json",
4+
"bug-fixes.json",
5+
"print-genesis-tx.json",
6+
"simplewallet-default-fee.json",
7+
"max-transaction-size-limit.json",
8+
"min-mixin.json",
9+
"mixin-start-height.json",
10+
"mandatory-transaction-in-block.json",
11+
"kill-height.json",
12+
"tail-emission-reward.json",
13+
"cryptonote-coin-clones-support.json",
14+
"genesis-block-reward.json",
15+
"versionized-parameters.json",
16+
"zawy-difficulty-algorithm.json",
17+
"bugged-zawy-difficulty-algorithm.json",
18+
"transaction-extra-message-tag.json",
19+
"blockchain-explorer.json",
20+
"enable-cors.json",
21+
"fee-address.json",
22+
"multiply.json",
23+
"get-blockchain-settings.json",
24+
"multiply/max-transaction-size-limit.json",
25+
"multiply/min-mixin.json",
26+
"multiply/mixin-start-height.json",
27+
"multiply/mandatory-transaction-in-block.json",
28+
"multiply/kill-height.json",
29+
"multiply/tail-emission-reward.json",
30+
"multiply/cryptonote-coin-clones-support.json",
31+
"multiply/genesis-block-reward.json",
32+
"multiply/versionized-parameters.json",
33+
"multiply/zawy-difficulty-algorithm.json",
34+
"multiply/bugged-zawy-difficulty-algorithm.json",
35+
"daemon-getrandom_outs-json.json",
36+
"simplewallet-import-keys.json",
37+
"simplewallet-export-keys.json",
38+
"walletd-extension.json"
39+
],
40+
"base_coin": {
41+
"name": "bytecoin",
42+
"git": "https://github.com/amjuarez/bytecoin.git"
43+
},
44+
"core": {
45+
"CRYPTONOTE_NAME": "forknote",
46+
"CRYPTONOTE_PUBLIC_ADDRESS_BASE58_PREFIX": 6,
47+
"P2P_DEFAULT_PORT": 8080,
48+
"RPC_DEFAULT_PORT": 8081,
49+
"SEED_NODES": [
50+
"seed.bytecoin.org:8080",
51+
"85.25.201.95:8080",
52+
"85.25.196.145:8080",
53+
"85.25.196.146:8080",
54+
"85.25.196.144:8080",
55+
"5.199.168.138:8080",
56+
"62.75.236.152:8080",
57+
"85.25.194.245:8080",
58+
"95.211.224.160:8080",
59+
"144.76.200.44:8080"
60+
],
61+
"GENESIS_COINBASE_TX_HEX": "010a01ff0001ffffffffffff0f029b2e4c0281c0b02e7c53291a94d1d0cbff8883f8024f5142ee494ffbbd08807121013c086a48c15fb637a96991bc6d53caf77068b5ba6eeb3c82357228c49790584a",
62+
"BYTECOIN_NETWORK": "11100111-1100-0101-1011-001210110110",
63+
"UPGRADE_HEIGHT_V2": 546602,
64+
"UPGRADE_HEIGHT_V3": 985548
65+
}
66+
}

configs/forknote.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@
3333
"multiply/bugged-zawy-difficulty-algorithm.json",
3434
"daemon-getrandom_outs-json.json",
3535
"simplewallet-import-keys.json",
36-
"simplewallet-export-keys.json",
37-
"walletd-extension.json"
36+
"simplewallet-export-keys.json"
3837
],
3938
"base_coin": {
4039
"name": "bytecoin",

extensions/speed-up-wallet-sync.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
"marker": "sub.syncStart.timestamp = std::max(creationTimestamp, ACCOUNT_CREATE_TIME_ACCURACY) - ACCOUNT_CREATE_TIME_ACCURACY;",
3838
"parameters": {
3939
"text": [
40+
"// sub.syncStart.height = 0;",
4041
" sub.syncStart.height = m_totalBlockCount;"
4142
]
4243
}
@@ -55,7 +56,8 @@
5556
"marker": "void WalletGreen::onSynchronizationProgressUpdated(uint32_t processedBlockCount, uint32_t totalBlockCount) {",
5657
"parameters": {
5758
"text": [
58-
" m_totalBlockCount = totalBlockCount;"
59+
"// m_totalBlockCount = totalBlockCount;",
60+
" m_totalBlockCount = 0;"
5961
]
6062
}
6163
},

0 commit comments

Comments
 (0)