We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
目前的 Transaction Notification Sample Request https://github.com/OpenNetworking/OSS/wiki/Notification-module#transaction-notification
{ "notification_id": "299f4f3f-71a7-4cb5-bb21-564e4c0f81bf", "subscription_id": "bd84e443-daa9-4000-a0ea-f162d273937a", "tx_hash": "e6372839ab539785191f9fcdb19e015ad0e72143709f14e50dc5f6d069dd888f", }
訂閱方指定區塊確認次數及交易識別碼時,回傳訊息時提供使定區塊確認數及其區塊時間 預期呈現方式如下
{ "notification_id": "299f4f3f-71a7-4cb5-bb21-564e4c0f81bf", "subscription_id": "bd84e443-daa9-4000-a0ea-f162d273937a", "tx_hash": "e6372839ab539785191f9fcdb19e015ad0e72143709f14e50dc5f6d069dd888f", "confirmation": "2" "confirmation_time": "<unix timestamp>", }
在應用場景中遇到callback_url固定是同一訊息接收端,同時接收區塊確認次數2及3的通知,原因是其將次數1判斷為"交易確認中",次數2判斷"交易已完成"
The text was updated successfully, but these errors were encountered:
confirmation_time應該要給的是unix timestamp才不會有時區的問題
因為OSS不會曉得callback_url用戶的時區
收到unix timestamp的用戶server需要自己轉換到對應時區的時間
Sorry, something went wrong.
No branches or pull requests
目前的 Transaction Notification Sample Request
https://github.com/OpenNetworking/OSS/wiki/Notification-module#transaction-notification
訂閱方指定區塊確認次數及交易識別碼時,回傳訊息時提供使定區塊確認數及其區塊時間
預期呈現方式如下
在應用場景中遇到callback_url固定是同一訊息接收端,同時接收區塊確認次數2及3的通知,原因是其將次數1判斷為"交易確認中",次數2判斷"交易已完成"
The text was updated successfully, but these errors were encountered: