Bytom 技术FAQ
fishshow21
发表于 2022-12-3 14:05:24
138
0
0
Github地址:https://github.com/Bytom/bytom$ l& g+ e3 m* @' O
Gitee地址:https://gitee.com/BytomBlockchain/bytom8 J+ o* x4 F8 R2 o5 q$ |
1、如何连接远程全节点服务器
远程服务需要本地生成的Access-token,可以通过以下两种方式:3 `- D1 V8 g5 [& b
./bytomcli create-access-token test 或者 curl -X POST create-access-token -d '{"id":"test"}'
然后获得access-token:
“created_at”: “2018-05-18T16:00:25.284677605+08:00”,
“id”: “test”,; n9 [. }$ b5 n
“token”:"test:fe50927ddaa5bcca77021e9f50fa5ef236a6140c012d1fe2eb9241f61a9228e4
test是账户,fe50927ddaa5bcca77021e9f50fa5ef236a6140c012d1fe2eb9241f61a9228e4是密码
postman的方式,设置Authorization为Basic Auth,然后填写账户名和密码
Java代码调用:6 ]9 E5 J; b6 A. Y0 L& L2 E
String auth = Username + ":" + Password;
byte[] encodedAuth = Base64.encodeBase64(auth.getBytes(Charset.forName("US-ASCII")));
String authHeader = "Basic " + new String(encodedAuth);. N+ ^5 R) Q7 m1 u8 o% e: b. t( d
Map header = new LinkedHashMap();
header.put("Authorization", authHeader);2 @( }" D$ f, A* e/ F9 d, Y! |+ Y
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给少了* k. {$ Q+ v( }
**3、reservation found outputs already reserved **
表示该账户的utxo被暂时缓存,建议隔几分钟后再发该交易,一般是交易密码错误
4、build里面那个ttl是干嘛用的?
ttl表示utxo的缓存时间, reservation found outputs already reserved, 这个错误对应的时间,time_range 是为了延迟交易上链的一个时间戳,ttl 为 0 的话会采用默认的时间,大概2两个块的时间(五分钟),超过ttl不能重新 build-transaction7 g6 h' w+ r5 f( O1 c$ t
5、一笔交易最大可以支持多少上链数据?
上链数据和gas上限有关,现在比原链数据上限为175000字节 = 170 KB
6、如何配置区块数据到指定位置, f0 o( s: u4 a0 o& ]! w! {; v6 f* X8 V
$ ./bytomd node --mining --home
成为第一个吐槽的人