parent
02e40adfca
commit
3370f4f42d
|
@ -345,8 +345,11 @@ QtObject:
|
|||
chainId,
|
||||
)
|
||||
|
||||
except RpcException:
|
||||
except RpcException as e:
|
||||
error "Error deploying contract", message = getCurrentExceptionMsg()
|
||||
let data = CommunityTokenDeployedStatusArgs(communityId: communityId,
|
||||
deployState: DeployState.Failed)
|
||||
self.events.emit(SIGNAL_COMMUNITY_TOKEN_DEPLOY_STATUS, data)
|
||||
|
||||
proc getCommunityTokens*(self: Service, communityId: string): seq[CommunityTokenDto] =
|
||||
try:
|
||||
|
|
|
@ -667,7 +667,7 @@ StatusSectionLayout {
|
|||
return
|
||||
}
|
||||
|
||||
Global.displayToastMessage(title, qsTr("View on etherscan"), "",
|
||||
Global.displayToastMessage(title, url === "" ? qsTr("Something went wrong") : qsTr("View on etherscan"), "",
|
||||
loading, type, url)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue