parent
6a96bc93b3
commit
a9d2ecf839
|
@ -116,9 +116,10 @@ pipeline {
|
|||
squishPackageName: 'squish-6.7.2-qt514x-linux64',
|
||||
testSuite: '${WORKSPACE}/test/ui-test/testSuites/*',
|
||||
])
|
||||
if ( res != "SUCCESS" ) {
|
||||
throw new Exception("squish test didn't end with success")
|
||||
if ( res == "SUCCESS" || res == "UNSTABLE" ) {
|
||||
return
|
||||
}
|
||||
throw new Exception("squish test didn't end with success")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -388,7 +388,7 @@ QtObject:
|
|||
try:
|
||||
let response = eth.suggestedRoutes(account, amount, token, disabledChainIDs)
|
||||
return SuggestedRoutes(
|
||||
networks: Json.decode($response.result{"networks"}, seq[NetworkDto])
|
||||
networks: Json.decode($response.result{"networks"}, seq[NetworkDto], allowUnknownFields = true)
|
||||
)
|
||||
except Exception as e:
|
||||
error "Error getting suggested routes", msg = e.msg
|
||||
|
|
Loading…
Reference in New Issue