Bytom 技术FAQ
fishshow21
发表于 2022-12-3 14:05:24
113
0
0
Github地址:https://github.com/Bytom/bytom5 v; n8 q& f: c5 ~+ b6 s
Gitee地址:https://gitee.com/BytomBlockchain/bytom- W1 K9 l+ E4 C. M' P6 N; T+ Y/ f
1、如何连接远程全节点服务器
远程服务需要本地生成的Access-token,可以通过以下两种方式:
./bytomcli create-access-token test 或者 curl -X POST create-access-token -d '{"id":"test"}'3 [+ x0 T9 [5 K! p6 S" v+ v
然后获得access-token:
“created_at”: “2018-05-18T16:00:25.284677605+08:00”,
“id”: “test”,
“token”:"test:fe50927ddaa5bcca77021e9f50fa5ef236a6140c012d1fe2eb9241f61a9228e4
test是账户,fe50927ddaa5bcca77021e9f50fa5ef236a6140c012d1fe2eb9241f61a9228e4是密码 h$ I! k6 W3 F) t% T9 V4 h
postman的方式,设置Authorization为Basic Auth,然后填写账户名和密码) \4 f# P0 U) g8 p1 P& y
Java代码调用:
String auth = Username + ":" + Password;
byte[] encodedAuth = Base64.encodeBase64(auth.getBytes(Charset.forName("US-ASCII")));
String authHeader = "Basic " + new String(encodedAuth);2 U* }4 A$ e2 p% }# D' G
Map header = new LinkedHashMap();' y- I4 s+ [6 O1 L
header.put("Authorization", authHeader);, g" p9 j, G: f# H$ G2 R
2、错误:{“status”:“fail”,“msg”:“tx rejected: checking result 0: checking output source: checking value source: checking mux source 0: checking value source: checking issuance program: pushing initial argument 0: run limit exceeded”} ,
交易费gas给少了
**3、reservation found outputs already reserved **2 t( S! W/ s( F0 c1 L' U
表示该账户的utxo被暂时缓存,建议隔几分钟后再发该交易,一般是交易密码错误
4、build里面那个ttl是干嘛用的?
ttl表示utxo的缓存时间, reservation found outputs already reserved, 这个错误对应的时间,time_range 是为了延迟交易上链的一个时间戳,ttl 为 0 的话会采用默认的时间,大概2两个块的时间(五分钟),超过ttl不能重新 build-transaction
5、一笔交易最大可以支持多少上链数据?
上链数据和gas上限有关,现在比原链数据上限为175000字节 = 170 KB7 p6 @4 \# R5 i7 X9 h' y
6、如何配置区块数据到指定位置) Q6 A9 c* a5 n1 N; U2 d
$ ./bytomd node --mining --home
成为第一个吐槽的人