Hi Guest

More contents, please log on!

Bitmere.com 区块链技术 Content

Bytom常见技术问题FAQ

李悔之2015
61 0 0
1、如何连接远程全节点服务器
远程服务需要本地生成的Access-token,可以通过以下两种方式:
./bytomcli create-access-token test  或者 curl -X POST create-access-token -d '{"id":"test"}'
然后获得access-token:
  1. “created_at”: “2018-05-18T16:00:25.284677605+08:00”,
  2. “id”: “test”,
  3. “token”:"test:fe50927ddaa5bcca77021e9f50fa5ef236a6140c012d1fe2eb9241f61a9228e4
Copy the Code

test是账户,fe50927ddaa5bcca77021e9f50fa5ef236a6140c012d1fe2eb9241f61a9228e4是密码
postman的方式,设置Authorization为Basic Auth,然后填写账户名和密码
Java代码调用:
  1. String auth = Username + ":" + Password;
  2. byte[] encodedAuth = Base64.encodeBase64(auth.getBytes(Charset.forName("US-ASCII")));
  3. String authHeader = "Basic " + new String(encodedAuth);
  4. Map header = new LinkedHashMap();
  5. header.put("Authorization", authHeader);
Copy the Code

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 **
表示该账户的utxo被暂时缓存,建议隔几分钟后再发该交易,一般是交易密码错误

4、build里面那个ttl是干嘛用的?
ttl表示utxo的缓存时间, reservation found outputs already reserved, 这个错误对应的时间,time_range 是为了延迟交易上链的一个时间戳,ttl 为 0 的话会采用默认的时间,大概2两个块的时间(五分钟),超过ttl不能重新 build-transaction

5、一笔交易最大可以支持多少上链数据?
上链数据和gas上限有关,现在比原链数据上限为175000字节 = 170 KB

6、如何配置区块数据到指定位置
$ ./bytomd node --mining --home
  
7、access-token接口访问失败
create-access-token
list-access-tokens
delete-access-token
check-access-token
这四个接口只能本地访问,不能远程访问

比原的交易费如何计算
BTM的输出- 输入就是交易费

交易存储的arbitrary字段中存储的hex增加了6a14是什么意思?
使用varint可变长编码
arbitary: 6a + push指令 + 数据内容,其中6a是固定的,对应OP_FAIL指令,主要用于虚拟机读的格式作用
BitMere.com is Information release platform,just provides information storage space services.
The opinions expressed are solely those of the author,Does not constitute advice, please treat with caution.
You have to log in before you can reply Login | 立即注册

Points Rules

Write the first review

李悔之2015 初中生
  • Follow

    1

  • Following

    0

  • Articles

    13

Promoted